GeekInterview.com
  I am new, Sign me up!
 
GeekInterview.com  >  Interview Questions  >  Microsoft  >  DotNet
Go To First  |  Previous Question  |  Next Question 
 DotNet  |  Question 23 of 165    Print  
In what order do the events of an ASPX page execute. As a developer is it important to understand these events?

  
Total Answers and Comments: 3 Last Update: April 03, 2007   
  
 Sponsored Links

 
 Best Rated Answer

No best answer available. Please pick the good answer available or submit your answer.
March 10, 2005 12:39:32   #1  
Binda Joshi        

RE: In what order do the events of an ASPX page execute. As a developer is it important to understand th...
Page InitPage LoadControl Events- Change event Action eventPage UnloadDispose
 
Is this answer useful? Yes | No
August 03, 2005 01:44:47   #2  
Babu Rajendra PRasad        

RE: In what order do the events of an ASPX page execute. As a developer is it important to understand th...
if you try to access it in Page_Load that is way earlier than Control's own
Render method. See ther Page/control lifecycle goes like this for the Page
and controls (being already in the controls collection dynamic ones play
catchup)

1. Instantiate
2. Initialize
3. TrackViewState
4. LoadViewState (postback)
5. Load postback data (postback IPostBackDatahandler.LoadPostdata)
6. Load
7. Load postback data for dynamical controls added on Page_Load (postback)
8. Raise Changed Events (postback
IPostBackDatahandler.RaisePostDataChanged)
9. Raise postback event (postback IPostBackEventHandler.RaisePostBackEvent)
10.PreRender
11. SaveViewState
12. Render
13. Unload
14. Dispose
null

 
Is this answer useful? Yes | No
April 03, 2007 15:01:49   #3  
umadhu04 Member Since: March 2007   Contribution: 6    

RE: In what order do the events of an ASPX page execut...
init()
load()
prerender()
unload()

 
Is this answer useful? Yes | No


 
Go To Top


 Sponsored Links

 
About Us -  Privacy Policy -  Terms and Conditions -  Contact -  Ask Question -  Propose Category -  Site Updates 

Copyright © 2005 - 2009 GeekInterview.com. All Rights Reserved

Page copy protected against web site content infringement by Copyscape