Transfer ViewState between pages

  • Thread starter Thread starter Alexander Vasilevsky
  • Start date Start date
How transfer ViewState between 2 aspx-pages?
AFAIK ViewState is designed to store state of the _single_ page on the
client side and your reqirement in my opinion doesn't target the ViewState.

But strictly answering: ViewState is implemented on the page as the
hidden form filed so You can just use this value and POST, GET,
whatever. Then You should properly interpret this value on another page;
with overriding Control.LoadViewState probably You can get the
functionality You asked but I would consider much simpler solution.

Regards
 
Back
Top