21
Mar
Passing parameter from one page to the other page
There are several ways we can pass parameter from one to another page.
1) Using the URL/QueryString input to Response.Redirect method
To pass the parameter, we simply append each parameter in a name=value pair fashion to the end of the url after a “?”.
For eg. Response.Redirecti(”~/Abc.aspx?name1=value1;name2=value2″);
separate each parameter with a “;”
*This is similiar to using GET method […]
Popularity: 13% [?]

