What events will occur when a page is loaded?

Showing Answers 1 - 21 of 21 Answers

P.vinothkumar

  • Sep 25th, 2007
 

Page Init

  Was this answer useful?  Yes

mahesh_dutta

  • Nov 27th, 2007
 

Page_PreInit
Page_Init
Page_InitComplete
Page_PreLoad

  Was this answer useful?  Yes

Please Ignore earliar answer as that is not complete and accicdently i clicked on submit
The Page Load Events are as under

1  PreInitialize
2. Initialize
3. Initialize Complete
4. PreLoad
5. Load
6. LoadComplete
6. PreRender
7 PreRenderComplete
8 Unload

  Was this answer useful?  Yes

kirangiet

  • Oct 23rd, 2009
 

We are having 11 Page life cycle events.

Below are the events occures during page load.

1) Page_PreInit
2) Page_Init
3) Page_InitComplete
4) Page_PreLoad
5) Page_Load
6) Page_LoadComplete
7) Page_PreRender
8)Render

Rest won't occure during pageload. Other events includes

1)Control Events
2)SaveViewState
3)Page_Unload

Note: Render is a event raised by page.

  Was this answer useful?  Yes

Manish Thakur

  • Mar 7th, 2012
 

Events available during page load are:

1.Pre-Init
2.Init
3.Initcomplete
4.PreLoad
5.Load
6.Loadcomplete
7.PreRender
8.Render

  Was this answer useful?  Yes

Modather Sadik

  • Oct 5th, 2012
 

PreInit -> Theme Init, MasterPage Applied, Control Skins Applied
Init -> All controls initialized and skins applied, Read/Write control properties
InitComplete -> Implement logic that depends on the page or controls initialized.
-
PreLoad -> Page PreLoad, controls preload, Viewstate initialized, PostBack data initialized
Load -> Server-side events fired (if IsPostBack)
LoadComplete -> Controls loaded in memory & ready to be rendered.
-
PreRender -> Use to make any final change to page/controls before turned into HTML
PreRenderComplete -> Apply changes in the previous part.
SaveStateComplete -> Control/View State Complete
Render -> Render All.
Unload -> Release object from the memory of the server.

Hope that help !

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions