What' is the sequence in which ASP.NET events are processed?
The sequence in which the ASP.NET events occur are as folows :-
1. Page_Init.
2. Page_Load.
3. Control events
4. Page_Unload event.
The Page_init event only occurs when first time the page is started, but Page_Load occurs in subsequent request of the page.