Click here to Skip to main content
Licence CPOL
First Posted 10 Jul 2006
Views 165,538
Bookmarked 149 times

ViewState Compression

By | 10 Jul 2006 | Article
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:

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.

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)

About the Author

Dario Solera

Founder
Threeplicate
Italy Italy

Member

Follow on Twitter Follow on Twitter
Google+
Dario Solera is the co-founder of Threeplicate Srl.
 
He is also the founder and main developer of the ScrewTurn Wiki project, now maintained by Threeplicate.
 
His interests are mainly politics, F1 and digital photography. He hopes, someday, to learn skydiving.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 5 Pinmemberlunabi662:27 8 Feb '11  
GeneralMy vote of 5 PinmemberE.F. Nijboer12:34 22 Oct '10  
QuestionCompression generates even bigger viewstate, why? Pinmemberjrbosch12:21 4 Feb '10  
AnswerRe: Compression generates even bigger viewstate, why? PinmemberShadowDanser3:13 16 Jan '11  
GeneralOptimize code Pinmembertruongpham7:07 17 Oct '09  
GeneralRe: Optimize code PinmemberE.F. Nijboer12:33 22 Oct '10  
QuestionExcellent!!! but have some problems with UserControls Pinmemberinharry10:33 17 Sep '09  
GeneralSuperb! Pinmemberkjerolran10:23 5 Mar '09  
Generaldoubt in above article PinmemberMaha_M5:40 15 Jun '08  
QuestionMemory leak? Pinmemberlrwilson3:59 4 Jun '08  
AnswerRe: Memory leak? PinmemberDario Solera6:12 7 Jun '08  
GeneralCompression and Ajax Pinmembermdmasonmbcs5:22 14 Apr '08  
GeneralRe: Compression and Ajax PinmemberTim McCurdy2:53 14 Jan '09  
GeneralRe: Compression and Ajax PinmemberMninawa3:25 18 Aug '10  
GeneralRe: Compression and Ajax PinmemberTim McCurdy3:59 18 Aug '10  
Generalgood stuff Pinmembermrkyle18:39 28 Feb '08  
GeneralExcellent Article..!! PinmemberSujith John Thomas2:18 21 Jul '07  
GeneralAnother way [modified] Pinmemberboros243:13 22 Feb '07  
GeneralRe: Another way PinmemberMunsifali Rashid11:02 28 Oct '07  
GeneralRe: Another way PinmemberFahad Azeem5:47 25 Apr '08  
GeneralASP.NET AJAX 1.0 Problem Pinmemberlookaround2:48 15 Feb '07  
Very nice solution!
 
Using the compression with AJAX 1.0, there is a problem because the viewstate is not updated in partial rendering (with UpdatePanel).
 
The solution is to replace the line
ClientScript.RegisterHiddenField("__VSTATE", Convert.ToBase64String(bytes));
with this code:
ScriptManager.RegisterHiddenField(this, "__VSTATE", Convert.ToBase64String(bytes));
 
With this simple change all works fine with Ajax too...
GeneralRe: ASP.NET AJAX 1.0 Problem PinmemberDAJG8:06 10 Jul '07  
GeneralRe: ASP.NET AJAX 1.0 Problem Pinmemberuyildir10:08 11 Nov '07  
GeneralRe: ASP.NET AJAX 1.0 Problem PinmemberCoolVini23:16 6 Oct '08  
GeneralRe: ASP.NET AJAX 1.0 Problem Pinmemberkjerolran10:02 5 Mar '09  

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

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120529.1 | Last Updated 10 Jul 2006
Article Copyright 2006 by Dario Solera
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid