|
Subject:
|
pass variable
|
|
Posted By:
|
kapi.goel
|
Post Date:
|
1/5/2006 11:46:42 PM
|
How can i pass a variable value from one aspx page to another aspx page ???
KG
|
|
Reply By:
|
jacob
|
Reply Date:
|
1/6/2006 4:54:55 AM
|
There are several ways, and actually the same as you have probably been using in ASP.
1. You can use the URL (querystring), e.g. default.aspx?variable01=10&var02=something
2. You can use a Session object to store variables in. You can get much more information on the use my searching either this forum or using Google.
3. You can also use hidden fields in forms if you are posting a form.
4. Probably something I have forgotten 
Hope it helps, Jacob.
|