0
kicks
Move ASP.Net ViewState to SQL Server
ViewState is a great feature, but it can get really bloated with data, especially if you have loads of controls on a page, repeaters etc.
You could think about setting enable viewstate to false, but you'll need it for posting pages back.
This tutorial moves the viewstate to a SQL database, by implementing a simple class that all your pages will inherit from.