I\'m trying to get asp.net to store viewstate in the session rather than bulking up the html.
Now i\'ve read that asp.net comes with the SessionPageStatePersister wh
You sure you want to do this? There are problems
If you insist on heading down this read then all you need to do is derive a class from page and override LoadPageStateFromPersistenceMedium() and SavePageStateToPersistenceMedium(). But you'll hate yourself and rip it out eventually.
Just make sure you have HTTP compression turned on at your server, and please, worry about something else instead.