Well this all depends. You could use Server.Transfer("Page1.aspx", True) which will maintain all values in Page1's webform and anything passed via querystring and allow you to work with it on page2.
You could place the values in a session variable, redirect to the next page, then access them there.
You could pass all the values via query string to page2.
Obviously each solution has its own pros and cons just need to pick the best for your situation.
Hth
"The one language all programmers understand is profanity."
|