Hi,
Say for example i have A,B,C .aspx pages... I have passed values using query string from A to B, Now want to pass A`s values from B along with B`s values to page C.. How do i do it.. In page C i want A`s and B`s values...
Thanks for the support in advance:)
Loading
Andrew FensterPosted Mar 21, 2011, 12:39 PM
(2) You can save the values in Session data and then recall them on another page.
(3) You can use a query string.
The most common solution is probably Session data. You save like this:
Session("Value 1") = value1;
You retrieve like this:
string value1 = Session("Value1");
There's more to it than that. Lots of options about how Session is saved, how long it's saved, etc. You may need to do some reading.
Suthish NairPosted Mar 21, 2011, 9:03 AM