=> Following are the page life cycle events:
1. PreInit
2. Init
3. InitComplite
4. PreLoad
5. Load
6. Control Event
7. LoadComplite
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
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
0 comments:
Post a Comment