In what order do the events of an ASPX page execute. As a developer is it important to undertsand these events?

Showing Answers 1 - 4 of 4 Answers

Shobha

  • Sep 20th, 2005
 

  1. Page Request
  2. Start (Core property initialized of the page as System.Web.UI.Page.Request or System.Web.UI.Page.Response)
  3. Page Initialization
  4. Load
  5. Validation
  6. Event Handling
  7. Rendering
  8. UnLoad

  Was this answer useful?  Yes

Praveen Kumar

  • Feb 7th, 2006
 

1. Object Initialization2. Load Viewstate Data3. LoadPostData Processes Postback Data4. Object Load5. Raise PostBack Change Events6. Process Client-Side PostBack Event7. Prerender the Objects8. ViewState Saved9. Render To HTML10. Disposal

  Was this answer useful?  Yes

Praveen Kunwar

  • Mar 9th, 2006
 

 

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

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