🎴 Flashcard Mode

.NET Framework and ASP.NET Programming Quiz

Card1 / 13
Mastered0
Review0
QuestionClick to flip

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

AnswerClick to flip back
A
PreInit
💡 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.

Change Mode