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 http pipeline in asp.net?
What is Bundling and Minification in MVC?
What is IPostBack? How to use it?
Explain the difference between panel and groupbox classes using .net?
If iam developing an application that must accomodate multiple security levels though secure login and my asp.net web appplication is spanned across three web-servers (using round-robbin load balancing) what would be the best approach to maintain login-in state for the users?
What is a url string?
What are the Types of state management techniques
What is true about application service provider?
How many types of sessions are there in asp net?
How does session work?
Can action method static?
Define the term Scavenging in Caching?
Can viewstate be accessed in another page?
What are uri parameters?
Why would a company use an application service provider?