Saturday 1 October 2011

What is the sequence in which ASP.NET events are processed ?


Following is the sequence in which the events occur (extremely simplified version, for more detailed description see another post):
  Page_Init.
  Page_Load.
  Control events.
  Page_Unload event.
Page_Init event only occurs when first time the page is started, but Page_Load occurs in subsequent request of the page


No comments:

Post a Comment