What is MVC life cycle?

In this chapter, we will discuss the overall MVC pipeline and the life of an HTTP request as it travels through the MVC framework in ASP.NET. 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 .

Read more

What is viewstate used for?

View state is used automatically by the ASP.NET page framework to persist information that must be preserved between postbacks . This information includes any non-default values of controls. You can also use view state to store application data that is specific to a page.

Read more