Marius Vasile

Marius Vasile

  • 604
  • 1.7k
  • 124.4k

Response Redirect ddl value incomplete

Mar 26 2020 2:17 PM
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)