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

What is page life cycle?

When an ASP.NET page runs, the page goes through a life cycle in which it performs a series of processing steps . These include initialization, instantiating controls, restoring and maintaining state, running event handler code, and rendering.22 Eki 2014

Read more