ASP.NET 2.0 Question:
Download Questions PDF

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

Answer:

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

Download ASP.NET 2.0 Interview Questions And Answers PDF

Previous QuestionNext Question
Can you give an example of what might be best suited to place in the Application_Start and Session_Start subroutines?Explain What is Viewstate?