How to transfer a value from one asp.net page to another asp.net page using queryString.It means test1.aspx and test2.aspx are two web pages.
In test1.aspx, I have a string value,
string abc="stackoverflow";
if i use it
Request.Redirect ("test2.aspx? Numbers =" + abc); .It does not work. If I use this, I cannot get the abc value on the page test2.aspx.
how to get this abc values into the test2.aspx?
source share