Search Wiki:
What Is ViewstateEliminator?

ViewstateEliminator is not just one implementation for stripping viewstate (in asp.net 2.0 haven't ported to 1.1 yet) from hitting the client, it provides a hook so that you may manage viewstate in your own way. Basically its an interface that you implement and handle the saving/loading of viewstate.

Currently Provided Storage Mediums:
SQLServer
SessionState
Application Cache

Last edited May 14 2007 at 5:25 PM  by maximoguerrero, version 7
Comments
Cquinones wrote  Apr 30 2007 at 12:30 AM  
Amazing!

This will definitely come in handy for applications in which the viewstate has become unbearable and completely unnecessary. The power of using and creating code to crate applications has been placed back into the hands of the developer. You can only do but so much with RAD.

This application is truly "Managed Code."

maximoguerrero wrote  May 1 2007 at 1:36 AM  
I have updated the Source, to include a better implemitation. This version has factory methods, and Iterfaces making it a pluggable architecture.
You can now create your own StorageMedium for storing viewstate.

maximoguerrero wrote  May 1 2007 at 6:01 PM  
it was decided to redo the SQL Storage medium, It will know keep viewstate for 24 hr after that it get deleted.

cp_ssiphiwo wrote  Oct 25 2007 at 2:34 PM  
great tool

I am adding the functionality to store views state in a file...

Updating...