Which is the first event in page life-cycle Event?
-
PreLoad
-
Load
-
InitComplete
-
PreInit
D
Correct answer
Explanation
In ASP.NET page lifecycle, PreInit is the first event that fires. This occurs before the page is initialized and is where properties like IsPostBack are set and personalization data is loaded. The sequence is PreInit → Init → InitComplete → LoadComplete, etc.