Multiple choice technology programming languages

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

  1. 1)Page_Init 2)Page_Load.3)Control events 4)Page_Unload event.

  2. 1)Page_Init 2)Page_Unload event..3)Control events 4)Page_Load

  3. 1)Page_Load 2)Page_Init 3)Control events 4)Page_Unload event.

  4. None

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The standard lifecycle events of an ASP.NET page are executed in the sequence: Page_Init (initialization), Page_Load (loading state), Control events (handling postback events like button clicks), and finally Page_Unload (cleanup).