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

Q

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

✍: Guest

A

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.

2007-10-24, 6738👍, 0💬