5,427,303 members and growing! (14,861 online)
Email Password   helpLost your password?
Web Development » View State » Viewstate     Intermediate

Myth Regarding ViewState in ASP.NET

By Vivek Thakur

Common myth that ViewState holds values for controls such as TextBoxes.
C#, .NET CF, Mobile, TabletPC, DotGNU, .NET 1.1, NT4, Win2K, WinXP, Win2003, Vista, Windows, .NET, ASP.NET, Visual Studio, VS.NET2003, Dev

Posted: 1 Jul 2005
Updated: 6 Sep 2006
Views: 51,397
Bookmarked: 18 times
Announcements
Want a new Job?



Search    
Advanced Search
Sitemap
37 votes for this Article.
Popularity: 5.31 Rating: 3.39 out of 5
7 votes, 18.9%
1
5 votes, 13.5%
2
0 votes, 0.0%
3
5 votes, 13.5%
4
20 votes, 54.1%
5

Introduction

Most ASP.NET developers think that the ASP.NET ViewState is responsible for holding the values of controls such as TextBoxes so that they are retained even after postback. But this is not the case.

I'll explain this with an example. You can download the project files from the link above (you can set the Virtual Directory by the name of ViewState) and run the application. Let's start with a web project in C#.

Open a new ASP.NET Web Application, and on the WebForm, place the following controls accordingly:

Place a web server TextBox control, an HTML server text box control (normal HTML input box with runat=server), a normal HTML input control, and a web server Label control. Name the four controls as:

  • txtWebServerTest
  • txtHtmlServerTest
  • txtHtmlTest
  • lblTest

Set the Text/Value property to “Initial Text” for the above three TextBoxes, and set the Text property of the Label control to “Initial Label Value”.

Set the EnableViewState property to false for the first and the last controls.

Beneath these controls, place two Button controls and set their text as “Change Label’s Text” and “Postback to Server”. On the button click event handler of the first button, write the following code:

private void btnChangeLabel_Click(object sender, System.EventArgs e)
{
    lblTest.Text = "Label's Text Changed";
}

There is no code on the second button’s Click event. It just submits the page to the server.

Now run this application. You can see the initial texts in the controls as you have set.

Now, change the text in all TextBoxes and set them to “Changed Text”. Now click the Post to Server button. What happens is that the first two textboxes retain their values, in spite of the ViewState property being set to false. But the last textbox, which is a simple HTML input control, loses the modified value when the page is reloaded.

Most developers would have expected all three textbox controls to lose their modified values (“Changed Text”), and after page re-loading, they expect “Initial Value” being written on all textboxes as we had disabled the ViewState.

The reason for this behavior is that ViewState is not responsible for storing the modified values for controls such as TextBoxes, dropdowns, CheckBoxList etc., i.e., those controls which inherit from the IPostBackDataHandler interface. After Page_Init(), there is an event known as LoadViewState, in which the Page class loads values from the hidden __VIEWSTATE from the field for those controls (e.g., Label) whose ViewState is enabled. Then the LoadPostBackData event fires, in which the Page class loads the values of those controls which inherit from the IPostBackDataHandler interface, (e.g., TextBox) from the HTTP POST headers.

Now, start the application again, and this time, click the “Change Label’s Text” button. When the page reloads, you will see that the programmatic change (made by our code in the event handler of the button’s Click event) was lost, i.e., we don’t see the Label’s text changed to “Label's Text Changed”. Instead, we see the initial value of the Label again. This is because the Label control does not inherit from the IPostBackDataHandler interface. So the ViewState is responsible for persisting its value across postbacks, and since it has been disabled, the Label loses its value after clicking the “Change Label’s Text” button.

Now enable the ViewState for the Label control, and you can see the modified value (“Label's Text Changed”) after clicking the same button.

So we conclude that controls which inherit from the IPostBackDataHandler interface will retain their values even if the ViewState has been disabled, as their values are stored in HTTP POST headers.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Vivek Thakur


Vivek Thakur is MVP (ASP.NET) and currently working in a self-funded technology firm. Vivek graduated with B.Tech from Indian Institute of Technology (IIT), Delhi. Though his expertise lies in Microsoft .NET platform, he is comfortable in J2EE platform besides C/C++, Prolog and MPI-CH. He has deep interest in programming, Chaos Theory and artificial intelligence. Besides his love for software architecture and design, Vivek also focuses on project management skills and has good experience of managing small to medium sized projects. He is also involved in giving training sessions and tutoring.

He is a strong advocate of Chaos Theory in software systems and management.

Vivek also loves music and is the lead guitar player in his band: TechTonica. He loves song writing and music composition, besides listening to different genres of music.
Occupation: Web Developer
Location: India India

Other popular View State articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 16 of 16 (Total in Forum: 16) (Refresh)FirstPrevNext
Subject  Author Date 
GeneralHi Vivekmembersheetaloza198020:33 5 Mar '07  
GeneralIt's not magic...membershaul_ahuva7:02 8 Sep '06  
GeneralRe: It's not magic...memberVivek Thakur2:31 12 Sep '06  
GeneralIf you want to truly understand ViewStatememberIgor Vigdorchik12:40 6 Sep '06  
GeneralRe: If you want to truly understand ViewStatememberLeaper5:55 19 Jul '07  
GeneralI cann't read text propertymembermfd118:58 16 Jan '06  
GeneralRe: I cann't read text propertymembervivekthakur2:29 18 Apr '06  
GeneralClose but not entirely accuratememberShane Holder12:21 21 Aug '05  
GeneralRe: Close but not entirely accuratemembervivekthakur22:39 1 Jan '06  
GeneralRe: Close but not entirely accuratemembervik2020:08 6 Sep '06  
GeneralVivek thanx.memberdejawoo0:12 9 Jul '05  
GeneralRe: Vivek thanx.membervivekthakur2:20 11 Jul '05  
GeneralRe: Vivek thanx.memberTony Belcher22:28 29 Jul '05  
GeneralControls which are not inherited IPostBackDataHandler/ IPostBackEventHandlermemberpshinde@brickred.com1:56 1 Jul '05  
GeneralRe: Controls which are not inherited IPostBackDataHandler/ IPostBackEventHandlermembervivekthakur2:11 1 Jul '05  
GeneralRe: Controls which are not inherited IPostBackDataHandler/ IPostBackEventHandlermemberGuenaVan1:22 16 Aug '05  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 6 Sep 2006
Editor: Smitha Vijayan
Copyright 2005 by Vivek Thakur
Everything else Copyright © CodeProject, 1999-2008
Web11 | Advertise on the Code Project