Saturday, 27 April 2013

What is the sequence in which ASP.NET events are processed ? | ASP.Net interview questions

Following is the sequence in which the events occur :
=> 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: