In which event, controls are fully loaded ?
-
Page_Init
-
Page_Load
-
Control Events
-
None
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.