ASP.NET MVC does not use ViewState in the traditional sense (that of storing the values of controls in the web page). Rather, the values of the controls are posted to a controller method.12 Haz 2015
Read moreHow does work ViewState in MVC?
View state is the method that the ASP.NET page framework uses to preserve page and control values between round trips. When the HTML markup for the page is rendered, the current state of the page and values that must be retained during postback are serialized into base64-encoded strings .
Read moreWhat are the state management techniques in MVC?
State Management techniques in ASP.Net MVC
Read moreWhat is MVC page life cycle?
At a high level, a life cycle is simply a series of steps or events used to handle some type of request or to change an application state . You may already be familiar with various framework life cycles, the concept is not unique to MVC. For example, the ASP.NET webforms platform features a complex page life cycle.
Read moreWhat is a page lifecycle?
Web Page lifecycle is simply a sequence of events that happen between the request (hitting the page) and response (returning data to user) .
Read moreHow do we manage the state in ASP.NET application?
Application state is stored in a key/value dictionary that is created during each request to a specific URL. You can add your application-specific information to this structure to store it between page requests. Once you add your application-specific information to application state, the server manages it .22 Eki 2014
Read more