Disable View State for a Page

Updated June 5, 2006
Iron Speed Designer V4.0 and later

The ASP.NET view state is the technique used by an ASP.NET Web page to persist changes to the state of a Web Form across postbacks.  The view state of a page is, by default, placed in a hidden form field named __VIEWSTATE.  This hidden form field can easily get very large, on the order of tens of kilobytes.  Not only do large view states cause slower downloads, they also lengthen postback request times because the contents of this hidden form field must be included in the HTTP post back request.  Unlike most other features of ASP.NET, view state can impact web pages dramatically, not only be in page size but also in server side performance.  Moreover, pages with large view states can throw unexpected errors.

A key thing to remember is that view state is enabled by default for every control on every page.  Since many server controls defined on a page contribute to view state size, your page’s view state will grow very large and impact performance if left unchecked.

When to disable view state

You can disable a control's view state if the control does not contain any dynamic data, its value is hardcoded, or its value is assigned on every page request and you're not handling its events.

A good example of a big consumer of view state is .NET’s DataGrid control.  It is desirable to disable view state for a page if the page does not post back.  However, if the DataGrid has sorting or paging enabled, then enabling view state is desirable.

When you complete a web page, review the controls in the page and consider what information is being passed in the view state and whether you really need all that information to be maintained.  To optimize web page size, consider disabling view state in these cases:

How to disable view state on a page

To disable a page’s View State, add the code below in the Page class of the page.  In this example, the page’s class name is ShowOrdersTable.

C#:

public ShowOrdersTable()

{

     this.Init += new EventHandler(Page_Init);

}

 

private void Page_Init(object sender, System.EventArgs e)

{

     this.EnableViewState = false;

}

Visual Basic .NET:

' Disable the View State in the page.

Private Sub MyPage_Init_DisableViewState(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Init

     Me.EnableViewState = False

End Sub

See Also

Part V: Customizing Application Code