How to recall the inputs in one page to another with C# or VB.NET

  • Thread starter Thread starter Prabhu Ram Prasath
  • Start date Start date
P

Prabhu Ram Prasath

I have a series of 5 or 6 pages each containing some 10 or
12 text box controls.

I need to recall the input given in first page at the last
page.

How should I use the viewstate collection to do this
without storing the datas in the session collection i.e.,
I need to store the contents under clients control.
 
Someone may yell at me for being wrong but from the way that I understand
viewstate, it is page dependent. Meaning the page must postback to itself
for viewstate to work. If you post to another page, viewstate data is gone.
 
Ye, you are right.

What I am saying is, I need to expose a public property in
each page which should return the values I have set on
each page.

I need to get the information from the page cache which is
on the client system. Is it possible.
 
Back
Top