Viewstate from vb class

  • Thread starter Thread starter Chris
  • Start date Start date
C

Chris

If I want to access the session from a vbclass I use HttpContext.Current
what do I do for viewstate. I can't seem to find it in current. Regards,
Chris.
 
If I want to access the session from a vbclass I use HttpContext.Current
what do I do for viewstate. I can't seem to find it in current. Regards,
Chris.

Hi Chris

The ViewState is available only in the code of the page. Because it is
responsible for persisting page values across postbacks.

Cheers
 
Back
Top