Multiple choice technology programming languages

Which is the first event in page life-cycle Event?

  1. PreLoad

  2. Load

  3. InitComplete

  4. PreInit

Reveal answer Fill a bubble to check yourself
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.