passing valuew from one web page to another page

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Isha Ahuja
    New Member
    • Aug 2006
    • 1

    passing valuew from one web page to another page

    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
  • shaam
    New Member
    • Aug 2006
    • 11

    #2
    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

    Working...