hi all,
How to pass a value from a gridview to another page using HyperLinks in asp.net ?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Abie JosePosted Jul 14, 2011, 1:56 AM
Response.Redirect("SecondPage.aspx?value1="& Textbox1.text &" &value2 = "& Textbox2.text &" ")
and in the secondpage.aspx you can retrieve this value with the following code
request.querystring("Value1")