The ASP.NET Web Forms includes the Server Controls which generally retains the state of the controls in the hidden field called _ViewState .
Does ASP.NET MVC have View State ?
The concept of server controls in ASP.NET Web Forms is different from the ASP.NET MVC . The ASP.NET MVC does not maintain the _ViewState in the HTML pages that is rendered by Razor or ASPX view.
Leave a Reply