Multiple choice .net asp

The first event to be triggered in an aspx page is.

  1. Page_Load()

  2. Page_Init()

  3. Page_click()

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

The Page_Init() event is the first event triggered in the ASP.NET page lifecycle, occurring before Page_Load(). The page lifecycle order is: Page_Init, Page_Load, then control events (like clicks). Page_Init is used for initialization tasks that need to happen before the page loads, such as dynamically creating controls or setting initial values.