|
You have to store it on page 2 in order to use it on page 3.
Some thing you could do:
1) Store the value in a hidden field and pass it from page to page. Use the Request.Form method to retrieve it.
2) Pass the value via Request.Querystring method from page to page
3) Store the value in a Session variable or Cookie, this way you can use it anywhere until either you clear the variable or the user close the browser sesssion. With cookies you can also persist the value so the next time they come back, it will be able to retrieve it off thier computer.
__________________
~Ryan
|