Mahesh Sharp
Mahesh Sharp

Reputation: 85

viewstate in asp.net

can we store viewstate other than in hidden field in asp.net

Upvotes: 1

Views: 247

Answers (2)

Joel Coehoorn
Joel Coehoorn

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

Related Questions