Click here to Skip to main content
15,860,859 members
Articles / Web Development / IIS
Article

ViewState Compression

Rate me:
Please Sign up or sign in to vote.
4.87/5 (72 votes)
10 Jul 2006CPOL3 min read 364.1K   162   88
How to compress the ViewState of ASP.NET pages and save bandwidth.

Introduction

Recently, I developed a huge ASP.NET page, with more than 30 controls. As we all know, it's a good idea to disable the ViewState for the controls that don't actually need it, say Literals or Labels. After doing that, I noticed that the hidden ViewState field was still a few KBs big. This is obviously a big problem for the users that still don't have a broadband connection, because uploading 40 KB to the server is really a bad issue, especially when they begin to click the "Submit" button again and again because they don't notice any response. So, after a few searches through the Internet, I built a simple solution to compress the ViewState and therefore save a rough 50% of the bandwidth. This post by Scott Hanselman has been particularly useful. Although it's possible to use external libraries to perform compression tasks, I think the better solution is to use the GZipStream or DeflateStream that the .NET Framework 2.0 includes.

Compressing and Decompressing Data in Memory

First of all, we need a way to compress and decompress an array of bytes in memory. I put together this simple static class that exposes two methods: Compress and Decompress. The two available classes, GZipStream and DeflateStream, according to MSDN, use the same algorithm, so it's irrelevant which one you choose.

The code below is really simple, and doesn't need further explanation:

C#
using System.IO;
using System.IO.Compression;

public static class Compressor {

  public static byte[] Compress(byte[] data) {
    MemoryStream output = new MemoryStream();
    GZipStream gzip = new GZipStream(output, 
                      CompressionMode.Compress, true);
    gzip.Write(data, 0, data.Length);
    gzip.Close();
    return output.ToArray();
  }

  public static byte[] Decompress(byte[] data) {
    MemoryStream input = new MemoryStream();
    input.Write(data, 0, data.Length);
    input.Position = 0;
    GZipStream gzip = new GZipStream(input, 
                      CompressionMode.Decompress, true);
    MemoryStream output = new MemoryStream();
    byte[] buff = new byte[64];
    int read = -1;
    read = gzip.Read(buff, 0, buff.Length);
    while(read > 0) {
      output.Write(buff, 0, read);
      read = gzip.Read(buff, 0, buff.Length);
    }
    gzip.Close();
    return output.ToArray();
  }
}

You need to save this class in a .cs file and put it in the App_Code directory of your ASP.NET application, making sure it's contained in the proper custom namespace (if you don't specify any namespace, the class will be available in the built-in ASP namespace).

Compressing the ViewState

Now, we can actually compress the ViewState of the page. To do that, we have to override the two methods LoadPageStateFromPersistenceMedium and SavePageStateToPersistenceMedium. The code simply uses an additional hidden field, __VSTATE, to store the compressed ViewState. As you can see, by viewing the HTML of the page, the __VIEWSTATE field is empty, while our __VSTATE field contains the compressed ViewState, encoded in Base64. Let's see the code.

C#
public partial class MyPage : System.Web.UI.Page {

  protected override object LoadPageStateFromPersistenceMedium() {
    string viewState = Request.Form["__VSTATE"];
    byte[] bytes = Convert.FromBase64String(viewState);
    bytes = Compressor.Decompress(bytes);
    LosFormatter formatter = new LosFormatter();
    return formatter.Deserialize(Convert.ToBase64String(bytes));
  }

  protected override void SavePageStateToPersistenceMedium(object viewState) {
    LosFormatter formatter = new LosFormatter();
    StringWriter writer = new StringWriter();
    formatter.Serialize(writer, viewState);
    string viewStateString = writer.ToString();
    byte[] bytes = Convert.FromBase64String(viewStateString);
    bytes = Compressor.Compress(bytes);
    ClientScript.RegisterHiddenField("__VSTATE", Convert.ToBase64String(bytes));
  }

  // The rest of your code here...
}

In the first method, we just decode from Base64, decompress and deserialize the content of the __VSTATE, and return it to the runtime. In the second method, we perform the opposite operation: serialize, compress, and encode in Base64. The Base64 string is then saved into the __VSTATE hidden field. The LosFormatter object performs the serialization and deserialization tasks.

You may also want to create a new class, for example, CompressedPage, inheriting from System.Web.UI.Page, in which you override the two methods and then inherit your page from that class, for example MyPage : CompressedPage. Just remember that .NET has only single inheritance, and by following this way, you "spend" your only inheritance chance to use the ViewState compression. On the other hand, overriding the two methods in every class is a waste of time, so you have to choose the way that best fits your needs.

Performances and Conclusions

After a few tests, I noticed that the ViewState has been reduced from 38 KB to 17 KB, saving 44%. Supposing you have an average of 1 postback per minute per user, you could save more than 885 MB of bandwidth per month on every single user. That's an excellent result: you save bandwidth (and therefore money), and the user notices a shorter server response time.

I wanted to point out that this solution has a performance hit on the server's hardware. Compressing, decompressing, encoding, and decoding data is quite a heavy work for the server, so you have to balance the number of users with your CPU power and RAM.

License

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


Written By
Italy Italy
Software Development Manager working on IaaS cloud computing. Cloud believer, (former) entrepreneur, F1 addict.

Follow me at dariosolera.it or on Twitter.

Comments and Discussions

 
QuestionViewstate issue with SharePoint Pin
PiranF30-Dec-14 20:32
PiranF30-Dec-14 20:32 
QuestionHow do you do this with masterpages? Pin
olaleke11-Feb-14 0:39
olaleke11-Feb-14 0:39 
AnswerRe: How do you do this with masterpages? Pin
adriancs3-Jun-14 20:12
mvaadriancs3-Jun-14 20:12 
QuestionProblem!! Pin
Victor Blanco20-Jun-13 7:04
Victor Blanco20-Jun-13 7:04 
AnswerRe: Problem!! Pin
Victor Blanco20-Jun-13 7:46
Victor Blanco20-Jun-13 7:46 
GeneralMy vote of 5 Pin
amadou daffe5-Dec-12 7:56
amadou daffe5-Dec-12 7:56 
QuestionNot sure that problem exists in a first place Pin
George20142-Sep-12 19:05
George20142-Sep-12 19:05 
AnswerRe: Not sure that problem exists in a first place Pin
boros2419-Sep-12 6:30
boros2419-Sep-12 6:30 
AnswerRe: Not sure that problem exists in a first place Pin
amit@123456710-Dec-12 21:45
amit@123456710-Dec-12 21:45 
GeneralMy vote of 5 Pin
Carlos Mattos (MVP)14-Aug-12 9:18
Carlos Mattos (MVP)14-Aug-12 9:18 
QuestionNaming & performance Pin
Malay Thakershi1-Aug-12 12:43
Malay Thakershi1-Aug-12 12:43 
GeneralMy vote of 5 Pin
lunabi668-Feb-11 2:27
lunabi668-Feb-11 2:27 
GeneralMy vote of 5 Pin
E.F. Nijboer22-Oct-10 12:34
E.F. Nijboer22-Oct-10 12:34 
QuestionCompression generates even bigger viewstate, why? Pin
jrbosch4-Feb-10 12:21
jrbosch4-Feb-10 12:21 
AnswerRe: Compression generates even bigger viewstate, why? Pin
ShadowDanser16-Jan-11 3:13
ShadowDanser16-Jan-11 3:13 
GeneralOptimize code PinPopular
Pham Dinh Truong17-Oct-09 7:07
professionalPham Dinh Truong17-Oct-09 7:07 
GeneralRe: Optimize code Pin
E.F. Nijboer22-Oct-10 12:33
E.F. Nijboer22-Oct-10 12:33 
QuestionExcellent!!! but have some problems with UserControls Pin
inharry17-Sep-09 10:33
inharry17-Sep-09 10:33 
GeneralSuperb! Pin
kjerolran5-Mar-09 10:23
kjerolran5-Mar-09 10:23 
Generaldoubt in above article Pin
Maha_M15-Jun-08 5:40
Maha_M15-Jun-08 5:40 
QuestionMemory leak? Pin
lrwilson4-Jun-08 3:59
lrwilson4-Jun-08 3:59 
AnswerRe: Memory leak? Pin
Dario Solera7-Jun-08 6:12
Dario Solera7-Jun-08 6:12 
GeneralCompression and Ajax Pin
mdmasonmbcs14-Apr-08 5:22
mdmasonmbcs14-Apr-08 5:22 
GeneralRe: Compression and Ajax Pin
Tim McCurdy14-Jan-09 2:53
Tim McCurdy14-Jan-09 2:53 
GeneralRe: Compression and Ajax Pin
Mninawa18-Aug-10 3:25
Mninawa18-Aug-10 3:25 

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.