|
|
 |
Aspnet servercontroltips Tutorial |
 |
 |
|
 |
|
|
|
|
ViewState in ASP.NET is referred to as the status of a page when it is submitted to a server. This status is defined by the hidden field which is placed on a page as <form runat="server"> control. This feature is available with ASP.NET only and this allows you to get the ViewState of a page even when you return to it. Usually this view state is not available once you have submitted a form and then travel back to that page. The information that you have filled up is all cleared. But ViewState facility of ASP.NET allows you this facility.
<input type="hidden" name="__VIEWSTATE" value="dDwxNDg5OTk5MzM7Oz7DblWpxMjE3ATl4Jx621QnCmJ2VQ==" /> <input type="hidden" name="__VIEWSTATE" value="dDwxNDg5OTk5MzM7Oz7DblWpxMjE3ATl4Jx621QnCmJ2VQ==" /> <asp:TextBox id=”tbName” runat=”server” EnableViewState=”false” /> |
|
|
|
|
|
|
|
| |
|
|
| |
| |
|
|
|
|