Can we disable ViewState?

ViewState can be easily disabled for a particular control by setting EnableViewState property to False . ViewState can be disabled for the whole Page i.e. all controls on the Page by setting the EnableViewState property to False in the @Page Directive.11 Eki 2018

Read more

What is ASP.NET enable ViewState?

View state enables a server control to maintain its state across HTTP requests . View state for a control is enabled if all of the following conditions are met: The EnableViewState property for the page is set to true . The EnableViewState property for the control is set to true .

Read more