3
Answers

Response Redirect ddl value incomplete

Photo of Marius Vasile

Marius Vasile

5y
480
1
I am trying to send parameter from a ddl through response redirect using
 
Response.Redirect("Test.aspx?Division=" + ddlDivision.SelectedValue, false)
 
The value for ddl is "Central & North Area"
 
On Test.aspx I got the parameter through
 
if (Request.QueryString["Division"] != null)
{
txtDivision.Text = Request.QueryString["Division"];
 
but the value is only "Central" 
 
How do I get the entire text including text after & 
 

Answers (3)