Different Methods for Disabling ViewState in ASP.NET
ViewState is used in ASP.NET to maintain control data in between postbacks. However, in other situations—particularly when performance is crucial and a page is losing state information—using ViewState might not be required or desirable. This article describes how to disable ViewState in an ASP.NET project at different levels. These techniques range from turning off ViewState…