vote up 0 vote down star

Hi all,

How to minimize viewstate size of a page in asp.net? Please help.

flag

67% accept rate

6 Answers

vote up 2 vote down check

You have several options to reduce the ViewState:

  • Disable ViewState for controls that do not need it (this is the most effective solution). E.g. if you can cache some data on the server, then you can re-bind any databound controls with every request and it's not needed to save everything in ViewState.
  • Turn on HTTP compression on the server (IIS). This reduces the size of the page sent to the client, including the ViewState.
  • Compress the ViewState. This has an additional advantage over HTTP compression: it also reduces the size of PostBacks (data sent back to the server), since the ViewState is always sent back to the server during a PostBack. There are various approaches for this, e.g. as shown in this blog post.
  • Store the ViewState on the server instead of sending it in a hidden field with the page. The easiest way to do this is to use the SesionPageStatePersister, but there are other solutions which store the ViewState to disk instead of using the Session (here for example).
link|flag
vote up 2 vote down

You cannot minimize the size of the ViewState. It's ASP.NET which serializes/deserializes. Though you could selectively disable ViewState for controls that don't need it.

link|flag
You can compress it and save it in your own form field – grega g Oct 10 at 10:04
vote up 1 vote down

Most of the points are highlighted within the other answers. Here's one that might be helpful:

Reduce the number of server controls (e.g. web/html controls) especiall those you do not need. Use simple HTML markups instead.

I've seen too many cases of redundant Table/Row/Cell Web Controls where normal < table >, < tr > and < td > will do.

link|flag
vote up 0 vote down

Have a look at this article.

It talks about

If no ViewState is needed in the page or any of its controls, set the EnableViewState property of the page or control to false.

link|flag
vote up 0 vote down

You can turn on compression on the server to minimalize size of data transfered through the network or save viewState to disk and never send it to the client.

link|flag
vote up -1 vote down

Minimize View State size

link|flag
why down voted??? – Wael Dalloul Oct 10 at 11:29
The one who voted you down probably feel it's a google-copy+paste effort. You may want to elaborate more on the solution of the hyperlink you've provided. – o.k.w Oct 10 at 11:48
that or it is because the link brings you down the page 2 posts past the one with any kind of meaningful content. – Aaron Oct 10 at 15:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.