What is the life cycle of an asp.net page?

Showing Answers 1 - 6 of 6 Answers

Joe

  • Sep 14th, 2005
 

Life cycle of asp.net page :Initialize (init event or init method)Load View State (Load view state method) Load Pre RenderRenderDispose

  Was this answer useful?  Yes

Praveen Kumar

  • Sep 23rd, 2005
 

The Life Cycle represents all the Events and Methods that are called from Initializing the Page to Unloading the Page. Stages and corresponding events in the life cycle of the ASP.NET page cycle: Stage Events/Method====================== ===========================Page Initialization Page_InitView State Loading LoadViewStatePostback data processing LoadPostDataPage Loading Page_LoadPostBack Change Notification RaisePostDataChangedEventPostBack Event Handling RaisePostBackEventPage Pre Rendering Phase Page_PreRenderView State Saving SaveViewStatePage Rendering Page_RenderPage Unloading Page_UnLoad

  Was this answer useful?  Yes

The ASP.NET Page Life Cycle

1. Object Initialization

2. Load Viewstate Data

3. LoadPostData Processes Postback Data

4. Object Load

5. Raise PostBack Change Events

6. Process Client-Side PostBack Event

7. Prerender the Objects

8. ViewState Saved

9. Render To HTML

10. Disposal

 

 

  Was this answer useful?  Yes

Urvil Shah

  • Jun 20th, 2007
 

Page_init
Page_LoadState
Page_ProcessPostBackData
Page_load
Page_ProcessPostBackEvent
Page_PreRender
Page_Render
Page_SaveState
Page_Unload

  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