I want to pass values of variable from one web page to another web page using hidden field . i m getting problem to retreive the data on destination page .please give an example that will solve my problem.
thanks
this will be useful to u for sending the variable value from one page to another
while redirecting to another page send the value of the variable like response.redire ct ("WebForm1.aspx ?a="+a)
in the above ex the value of a will be redirected to the webform1
and the value can be retrieved there by using request.query string like request.queryst ring["a"]
Comment