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
What is the difference between debug and release?
Why is xap important?
What are app services?
List the events in page life cycle.
What is a Cookie? Where is it used in ASP.NET?
Explain automatic memory management in .net.
What are the contents of cookie?
What is aspect-oriented programming?
If you are using two select queries and retrieving data. how do you access second query's result set using data reader?
What is the good practice to implement validations in aspx page?
What are the main requirements for caching?
Explain why datareader is useful?
How you will improve web application performance?
What is the page life cycle in asp.net?
Explain what is an abstract class?