In what order do the events of an ASPX page execute. As a
developer, why is it important to understand these events?
Answer Posted / firoj husen shaikh
The events will be executed in following order,
Page_PreInit()
Page_Init()
Page_InitComplete()
LoadViewState()
Page_PreLoad()
Page_Load()
Page_LoadComplete()
Page_Prerender()
SaveViewState()
Page_Render()
Page_Unload()
As a developer it is necessry to understand which event is
useful to initialize variables and other kind of
initialization.
| Is This Answer Correct ? | 9 Yes | 8 No |
Post New Answer View All Answers
Explain how is the asp.net mvc architecture different from others? : asp.net mvc
What is hidden field in asp.net?
What is enableviewstatemac in asp net?
What are session objects?
What is the difference between GridView and Repeater controls in ASP.NET?
Which methods validate all the controls on a page?
What is http post action?
What is the base class from which web forms are inherited?
What is runat?
If I am developing an application that must accomodate multiple security levels though secure login and my asp.net web application is spanned across three web-servers (using round-robin load balancing). What would be the best approach to maintain login-in state for the users?
Will the asp.net validators run in server side or client side? How do you do client-side validation in .net?
What is the difference between CLICK and MOUSE DOWN Event ?
How do I open an ashx file?
What is page fragment caching?
Why asp.net is used?