Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Everything / ViewState

ViewState

ViewState

Great Reads

by Xnko
On the Web there are many examples for moving ViewState to the bottom of Page using RegularExpressions. This is another way using HtmlTextWriter.All you nees that add in your project class named MoveViewStateHtmlTextWriter and write in your BasePage code below.protected override...
by Mike Thom
If you move your ViewState from the top of the page to the bottom, you will get better search engine spidering.Step 1Create a class file in App_code folder of your application and name it as PageBase.cs. Copy the following code to the class file.using System.IO;using...
by Mathi Mani
In this tip, we will try to understand whether viewstate and postback data are the same or different.
by Eduardo Antonio Cecilio Fernandes
This article explains how to manage ASP.NET Client and Server State, via View State, Hidden Fields, Cookies, Query Strings, Session State and Application State.

Latest Articles

by Xnko
On the Web there are many examples for moving ViewState to the bottom of Page using RegularExpressions. This is another way using HtmlTextWriter.All you nees that add in your project class named MoveViewStateHtmlTextWriter and write in your BasePage code below.protected override...
by Mike Thom
If you move your ViewState from the top of the page to the bottom, you will get better search engine spidering.Step 1Create a class file in App_code folder of your application and name it as PageBase.cs. Copy the following code to the class file.using System.IO;using...
by Mathi Mani
In this tip, we will try to understand whether viewstate and postback data are the same or different.
by Eduardo Antonio Cecilio Fernandes
This article explains how to manage ASP.NET Client and Server State, via View State, Hidden Fields, Cookies, Query Strings, Session State and Application State.

All Articles