Multiple choice technology programming languages

In which event, controls are fully loaded ?

  1. Page_Init

  2. Page_Load

  3. Control Events

  4. None

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

In ASP.NET page lifecycle, the Page_Load event fires when all server controls are fully loaded and initialized. Page_Init occurs earlier during initialization but before view state loading. Control Events fire after Page_Load in response to user actions.