ASP .Net page life cycle events:


=> Following are the page life cycle events:

1.  PreInit

2.  Init
3.  InitComplite
4.  PreLoad
5.  Load
6.  Control Event
7.  LoadComplite
8.  PreRender
9.  PreRenderComplete
10. SaveStateComplete
11. RenderComplite
12. Unload

PreInit :-
 PreInit is the first event in page life cycle. It checks the IsPostBack property and determines whether the page is a postback. It sets the themes and master pages, creates dynamic controls, and gets and sets profile property values. This event can be handled by overloading the OnPreInit method or creating a Page_PreInit handler.


Init :- Init event initializes the control property and the control tree is built. This event can be handled by overloading the OnInit method or creating a Page_Init handler.


InitComplete :- InitComplete event allows tracking of view state. All the controls turn on view-state tracking.

event allows loading view state information into the controls.

During this phase, the contents of all the input fields are defined with the

tag are processed.


PreLoad :- PreLoad occurs before the post back data is loaded in the controls. This event can be handled by overloading the OnPreLoad method or creating a Page_PreLoad handler.


Load :- The Load event is raised for the page first and then recursively for all child controls. The controls in the control tree are created. This event can be handled by overloading the OnLoad method or creating a Page_Load handler.

Control Events :- Use these events to handle specific control events, such as aButton control's Click event or a TextBox control's TextChanged event.

LoadComplete :- The loading process is completed, control event handlers are run, and page validation takes place. This event can be handled by overloading the OnLoadComplete method or creating a Page_LoadComplete handler


PreRender :- The PreRender event occurs just before the output is rendered. By handling this event, pages and controls can perform any updates before the output is rendered.


PreRenderComplete :- As the PreRender event is recursively fired for all child controls, this event ensures the completion of the pre-rendering phase.


SaveStateComplete :- State of control on the page is saved. Personalization, control state and view state information is saved. The HTML markup is generated. This stage can be handled by overriding the Render method or creating a Page_Render handler.

RenderComplite :- This is not an event; instead, at this stage of processing, the Page object calls this method on each control. All ASP.NET Web server controls have aRender method that writes out the control's markup that is sent to the browser.

UnLoad :- The UnLoad phase is the last phase of the page life cycle. It raises the UnLoad event for all controls recursively and lastly for the page itself. Final cleanup is done and all resources and references, such as database connections, are freed. This event can be handled by modifying the OnUnLoad method or creating a Page_UnLoad handler.

Share

& Comment

0 comments:

Post a Comment

 

Copyright © 2019 HART™ is a registered trademark.