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
How does a content page differ from a master page?
What are server activated objects?
Difference between using directive vs using statement?
Explain how is a property designated as read-only?
What are the Difference between asp.net and asp ?
What are the new features implemented in ASP.NET?
What is protected configuration?
What is state management in .net?
What is connection pooling and how to enable and disable connection pooling?
What is difference between asp state management and asp.net state management? How can we pass info between 2 asp.net pages?
Will the asp.net validators run in server side or client side? How do you do client-side validation in .net?
What are the different types of sessions in asp.net?
How many types of state management are there in asp net?
For which does this Codebehind="MyCode.aspx.cs" is relevent to ?
What is difference between session and cookie?