ASP.NET 4 Page Life Cycle
Jan 18, 2010
When an ASP.NET 4.0 page runs, the page goes through a life cycle in which it performs a series of processing steps. These include
The following diagram shows some of the most important methods of the System.Web.UI.Page class that you can override in order to add code that executes at specific points in the page life cycle.
Share
- initialization
- instantiating controls
- restoring and maintaining state
- running event handler code and
- rendering.
The following diagram shows some of the most important methods of the System.Web.UI.Page class that you can override in order to add code that executes at specific points in the page life cycle.
It also shows how these methods relate to page events and control events. A preliminary version of the diagram was added to the ASP.NET 4 Beta 2 page life cycle documentation on MSDN.
Use the technology. Happy Coding...!
Use the technology. Happy Coding...!
Share