🎴 Flashcard Mode

C# ASP .Net Quiz

Card1 / 14
Mastered0
Review0
QuestionClick to flip

What is the first method that is fired during page load among these methods?

AnswerClick to flip back
A
Init
💡 Explanation:

In ASP.NET WebForms lifecycle, Init fires first (called when page is initialized), followed by Load, PreRender, and finally Unload. Init is the earliest event in the provided list, occurring before view state is loaded and before controls are populated.

Change Mode