ASP .NET Maintaining the ViewState
You may save a lot of coding by maintaining the ViewState of
the objects in your Web Form.
Maintaining the ViewState
When a form is submitted in classic ASP, all form values are cleared. Suppose you
have submitted a form with a lot of information and the server comes back with an error.
You will have to go back to the form and correct the information. You click the
back button, and what happens.......ALL form values are CLEARED, and you will have to start all over
again! The site did not maintain your ViewState.
When a form is submitted in ASP .NET, the form
reappears in the browser window together with all form values. How come? This is
because ASP .NET maintains your ViewState.
The ViewState indicates the status of the page when submitted to the server. The
status is defined through a hidden field placed on each page with a <form runat="server"> control. The source could look something like this:
<form name="_ctl0" method="post" action="page.aspx" id="_ctl0">
<input type="hidden" name="__VIEWSTATE"
value="dDwtNTI0ODU5MDE1Ozs+ZBCF2ryjMpeVgUrY2eTj79HNl4Q=" />
.....some code
</form>
|
Maintaining the ViewState is the default setting for ASP.NET Web Forms. If you
want to NOT
maintain the ViewState, include the directive <%@ Page EnableViewState="false" %> at the top of
an .aspx page or add the attribute EnableViewState="false" to any control.
Look at the following .aspx file. It demonstrates the "old" way to do it. When
you click on the submit button, the form value will disappear:
<html>
<body>
<form action="demo_classicasp.aspx" method="post">
Your name: <input type="text" name="fname" size="20">
<input type="submit" value="Submit">
</form>
<%
dim fname
fname=Request.Form("fname")
If fname<>"" Then
Response.Write("Hello " & fname & "!")
End If
%>
</body>
</html>
|
Example
Here is the new ASP .NET way. When you click on the submit button, the form
value will NOT disappear:
<script runat="server">
Sub submit(sender As Object, e As EventArgs)
lbl1.Text="Hello " & txt1.Text & "!"
End Sub
</script>
<html>
<body>
<form runat="server">
Your name: <asp:TextBox id="txt1" runat="server" />
<asp:Button OnClick="submit" Text="Submit" runat="server" />
<p><asp:Label id="lbl1" runat="server" /></p>
</form>
</body>
</html>
|
Example
(Click view source in the right frame of the example to see that ASP .NET has
added a hidden field in the form to maintain the ViewState)
 |
 |
 |
 |
The Ektron Intranet
lets you do everything you need to do on your corporate intranet and everything you want to do... all with just one application.
What can you do with the Ektron Intranet? |
 |
Navigate through content, documents, assets, colleagues and workgroups quickly and intuitively with enterprise search |
 |
Communicate with friends and colleagues with forums, message boards and corporate blogging using the new Social Networking Platform |

|
Utilize the extensive out-of-the box features or customize your site through Ektron CMS400.NET's open architecture |
 |
Promote collaboration in your organization through project workspaces where others can efficiently find information and work together |
 |
Author/edit content, manage navigation, menus, audit trails, workflow and approvals with the best in breed Content Management |
|
|
|
|
See why there are 20,000+ Ektron integrations worldwide.
|
|
 |
TAKE THE VIDEO TOUR |
 |
or download a FREE TRIAL today. |
|