Vous êtes sur la page 1sur 24

Presented By : Abhishek Sur http://www.abhisheksur.

com/

Table of Content
y Introduction y Application Life Cycle y IIS Request Process y Application Pool y Worker Process y HTTP Handler/Module y ASP.NET Page Life Cycle y Page Life Cycle Steps y Page Life Cycle Events y Life Cycle for Master Page and User Control y QA

Introduction
y When Clients request for an aspx page from browser

and lot of stuffs happens in background to produce the output or sending response to client. This evolves ASP.NET Page Lifecycle. y ASP.NET Page Life Cycle is very much important to know for each and every developer to developed an ASP.NET Web Application. y All events, data processing, dynamic control creation, view state, postback, rendering etc. are depends with Page Life Cycle.

Application Life Cycle


1. 2. 3. 4. Client Request For Information Request comes to Server Server Process the request Send the response back to Client

Application Life Cycle - Contd.


y Key terms to remember y HTTP.SYS y WAS y Application Pool y Worker Process

http://blogs.thesitedoctor.co.uk/tim/2006/06/30/Complete+Lifecycle+Of+A n+ASPNet+Page+And+Controls.aspx

Application Life Cycle Contd.


y Key Terms To Remember y Http Module y Http Handler y Http Pipeline

End Of Application Life Cycle Start Page Life Cycle


y Request Passes Through HTTP Pipe Line y This Start Page Life Cycle

ASP.NET Page Life Cycle Begins


y Start y Initialization y Load y Validation y Events y Render

S R

I E

L V

Page Life Cycle - Start


y Client Request For Resource y Request Comes To Server (IIS) y IIS Process the Initial Processing y Request Passed through HTTP- Pipe Line y ASP.NET Page Life Cycle Starts

Page Life Cycle - Initialization


y Set Postback properties y Unique ID for Each Control in the Page y Themes needs to be initialized y Dynamic control need to be created

Page Life Cycle - Load


y If the Request is the post back request then it loads

data from View States and Control State

Page Life Cycle - Validation


y Validate the pages Control y Updates the IsValid property

Page Life Cycle - Events


y This will only fired if the request is an postback event. y Like, if the post back is happened for an Button Click.

Button Click event will fired.

Page Life Cycle - Render


y Before Rendering All View State data has been set. y Render() method for all control has been called and

write the out put on output stream.

Page Life Cycle - Events

http://msdn.microsoft.com/en-us/library/ms178472.aspx

ASP.NET Page Life Cycle Events


y PreInit y Init y PreLoad y Load y Control Events y PreRender y SaveViewState y Render y Unload

Page Life Cycle Events


y PreInit()
y y y y

This is the first event which raised in asp.net page lifecycle Check for Request is for Post Back or not. All dynamic control need to be created Theme Change, Master Page Set at runtime Raised after all controls have been initialized Build up a tree of controls from the ASPX file Turn on view state monitoring any changes in control will be tracked by View State for future.

y Init()
y y y

Page Life Cycle - Events


y PreLoad()
y y y

Load view state data for page and controls Load Postback data if needed We can process any kind operation that need to perform before page load OnLoad methods control called for each and every control We can create the connection initialization for any kind of external source like database connection We can also set the control properties

y Load()
y y

Page Life Cycle - Events


y Control Events
y

If this is an postback request , Corresponding events will triggered. Like, if the post back is happing for button click, then Button_Click Event will fired. Each control of the page has a PreRender event which is being invoked. EnsureChildControls is also being called during this events DataBind method for all control has also been called If we want to change any thing to any control this is the last event where we can do because after the pageRender starts

y PreRender
y

y y y

Page Life Cycle - Events


y SaveViewState
y y

ViewState Monitoring is turned off as here all the ViewState Data need to be saved. View State data saved in hidden filed called _VIEWSTATE Pages calls the Render method for each and every control. Text writer that writes the output to the as output stream Output steam set to the page's Response property.

y Render
y y y

Page Life Cycle - Events


y Unload
y y y

This is the last event of asp.net page life cycle This ensure the Request and Response has been set to null. This is called only after the content of the page fully rendered and response sent to client

Page Life Cycle - Master Page and User Controls


y MasterPage gets initialized from the Page class in the init phaze y y y y y

of page. The content of Masterpage gets loaded side by side as the page gets loaded. User control will be initialized and added to the page and before page gets initialized After page Onload, MasterPage_OnLoad gets called and UserControl_Onload gets called sequentially. Followed by each of Page events, masterPage events gets called and next Usercontrol events are called. During the unload phaze, Usercontrol gets unloaded first and then masterpage and Page in sequence. For further reference refer to : http://blogs.thesitedoctor.co.uk/tim/2006/06/30/Complete+Life cycle+Of+An+ASPNet+Page+And+Controls.aspx

Q/A

Thank you

Vous aimerez peut-être aussi