Monday, January 16, 2012

ASP.NET- Page life cycle

(SILVER)
Start
Request and Response are set.
Page initialization
Controls on the page are available and each control's UniqueID property is set
Load:
Control properties are loaded with information recovered from view state and control state.
Validation:
Validate method of all validator controls is called
Event handling:
If the request is a postback, any event handlers are called.
Rendering:
Page calls the Render method for each control, providing a text writer that writes its output to the OutputStream of the page's Response property.

No comments: