Reputation: 85
can we store viewstate other than in hidden field in asp.net
Upvotes: 1
Views: 247
Reputation: 415665
Yes. There are a number of different implementations out there for moving ViewState to Sql Server, for example. But often, when you want to do this a better option is to make a few smaller changes to your site to reduce the number of postbacks and the amount of information placed in viewstate in the first place.
Upvotes: 3
Reputation: 57936
Try this: Moving ViewState to the Session Object and more Wrongheadedness
Upvotes: 2