Click here to Skip to main content
15,880,796 members
Articles / Web Development / ASP.NET

Save ViewState on the File System

Rate me:
Please Sign up or sign in to vote.
4.61/5 (13 votes)
2 Sep 2007CPOL1 min read 68.4K   774   34   13
An article on how to save the ViewState on the file system.

Introduction

One disadvantage of the ViewSate is it adds extra kilobytes of data to the payload. To overcome this disadvantage, it can be saved on the server.

Strategy

There are three options to save the ViewState on the server.

  1. MS SQL Server
  2. File System
  3. Memory

Using MS SQL Server is expensive. If you do not have MS SQL Server, you have to pay extra money and the speed of it is the lowest. Using memory is expensive too. Because memory is a scarce resource. So, I have chosen to save the ViewSate on the file system.

Using the code

.NET uses the SavePageStateToPersistenceMedium method to save the ViewSate and the LoadPageStateFromPersistenceMedium method to load the ViewSate. I will override these functions to save and load the ViewSate using the file system.

C#
protected override void SavePageStateToPersistenceMedium(Object viewState)
{
    LosFormatter lf = new LosFormatter();
    StringWriter sw = new StringWriter();
    System.Text.StringBuilder sb = new System.Text.StringBuilder();
    string fileName = this.GenerateFileName();

    lf.Serialize(sw, viewState);
    sb = sw.GetStringBuilder();
    WriteFile(sb.ToString(), fileName);

    sb = null;
    lf = null;
    sw = null;
}
    
protected override Object LoadPageStateFromPersistenceMedium()
{
    Object deserializedValue = null;
    string fileName = GetFileName();
    LosFormatter lf = new LosFormatter();

    deserializedValue = lf.Deserialize(ReadFile(fileName));
    
    lf = null;

    return deserializedValue;
}

GenerateFileName() generates and registers a file name using the Session ID and a GUID. The ViewState is saved in this file. GetFileName() returns this registered file name.

Performance

Saving ViewState on the page

Screenshot - saveViewState1.jpg

Saving ViewState on the file system

Screenshot - saveViewState2.jpg

You can see that the page size and the load time decrease with this method.

Using the demo

You should change the ViewStateRootDirectory in the web.config according to your directory structure. The ASP.NET user must have write permission to this directory.

In the Session_End event, the ViewState storage directory is deleted. In the Application_Start event, ViewStateRootDirectory is loaded to the cache to increase performance instead of reading it from web.config every time.

Reference

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Turkey Turkey
Ibrahim ULUDAG
Software Developer
ibrahimuludag@gmail.com
https://linkedin.com/in/ibrahimuludag
http://www.ibrahimuludag.com/

Comments and Discussions

 
Generalwill this work on a web farm Pin
TomP6926-Sep-07 11:02
TomP6926-Sep-07 11:02 
GeneralRe: will this work on a web farm Pin
ibrahimuludag9-Oct-07 2:13
ibrahimuludag9-Oct-07 2:13 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.