Determine Your ASP.NET Framework Page's View State Size | CodeGuru

Determine Your ASP.NET Framework Page’s View State Size

The ASP.NET framework WebForms model aims to simplify web development by blurring the line between the client and the server. In short, WebForms allow the .NET developer to set aside the fact that the browser and the web server are temporally, physically, and logically disconnected. The page developer can create server-side event handlers that execute […]

Written By
CodeGuru Staff
CodeGuru Staff
Sep 15, 2010
2 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

The ASP.NET framework WebForms model aims to simplify web development by blurring the line between the client and the server. In short, WebForms allow the .NET developer to set aside the fact that the browser and the web server are temporally, physically, and logically disconnected. The page developer can create server-side event handlers that execute in response to a client-side action (like clicking a button). He can make server-side changes to properties of Web controls on the page and need not worry about reinstating those properties on the subsequent postback. One of the essential ingredients for performing this magic is view state.

View state represents the state of an ASP.NET web page that is to be remembered across postbacks. On each page visit, an ASP.NET web
page automatically constructs this state information and stores it to a hidden form field on the page named __VIEWSTATE. When the form
is submitted, the browser returns this hidden form field to the server; the ASP.NET page then parses the view state information to
reconstruct the state from the previous page visit. This entire process happens automatically behind the scenes and is, in part, what
makes ASP.NET web development so accessible.

Unfortunately, there is no such thing as a free lunch, and view state is no exception. The presence of view state adds to the size of
the page, thereby resulting in larger page sizes that can negatively effect the user experience. What’s more, certain controls, such as
DropDownLists and GridViews, can significantly add to the heft of a page’s view state. It’s a good practice for WebForm developers to
keep an eye on their pages’ view state sizes to ensure an optimal user experience. This article shows two ways to programmatically determine a page’s view state size and to provide a warning should the view state size exceed some specified threshold. To read the entire article, Determine Your ASP.NET Framework Page’s View State Size, click here.

CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.