• 一般情況下:

Page.PreInit
Page.Init
Page.InitComplete
Page.PreLoad
Page.Load
Page.LoadComplete
Page.PreRender
Page.PreRenderComplete

  • 使用了 MasterPage 情況, MasterPage 與 ContentPage 事件順序:

ContentPage.PreInit
Master.Init
ContentPage.Init
ContentPage.InitComplete
ContentPage.PreLoad
ContentPage.Load
Master.Load
ContentPage.LoadComplete
ContentPage.PreRender
Master.PreRender
ContentPage.PreRenderComplete

 

 

參考文章:ASP.Net 事件發生先後順序

努力學習dot Net , 若有錯誤請多多指教 ^^


posted on 2009/3/26 10:02 | 我要推薦 | 閱讀數 : 870 訂閱


關連文章
# re: 轉載-參考資料 ASP.Net 事件發生先後順序
Posted by hatelove on 2009/3/26 下午 04:12 回覆

幫你補上頁面事件的意義。

參考http://www.dotnetcurry.com/ShowArticle.aspx?ID=61

Explain the Event Life cycle of ASP.NET 2.0?
The events occur in the following sequence. Its best to turn on tracing(<% @Page Trace=”true”%>) and track the flow of events :
PreInit – This event represents the entry point of the page life cycle. If you need to change the Master page or theme programmatically, then this would be the event to do so. Dynamic controls are created in this event.
Init – Each control in the control collection is initialized.
Init Complete* - Page is initialized and the process is completed.
PreLoad* - This event is called before the loading of the page is completed.
Load – This event is raised for the Page and then all child controls. The controls properties and view state can be accessed at this stage. This event indicates that the controls have been fully loaded.
LoadComplete* - This event signals indicates that the page has been loaded in the memory. It also marks the beginning of the rendering stage.
PreRender – If you need to make any final updates to the contents of the controls or the page, then use this event. It first fires for the page and then for all the controls.
PreRenderComplete* - Is called to explicitly state that the PreRender phase is completed.
SaveStateComplete* - In this event, the current state of the control is completely saved to the ViewState.
Unload – This event is typically used for closing files and database connections. At times, it is also used for logging some wrap-up tasks.
The events marked with * have been introduced in ASP.NET 2.0.
# re: 轉載-參考資料 ASP.Net 事件發生先後順序
Posted by nelsonlin on 2009/3/27 上午 09:12 回覆

to hatelove :
感謝hatelove大~^^~

Post Comment
標題 *
名稱 *
Email(將不會被顯示)
Url
登入後使用進階評論
Please add 8 and 5 and type the answer here: