🎴 Flashcard Mode
Web Services and ASP.NET Fundamentals
Card1 / 20
Mastered0
Review0
QuestionClick to flip
What is the last stage of the Web forms lifecycle?
AnswerClick to flip back
A
Page_unload
💡 Explanation:
The Page_Unload event is the final stage in the ASP.NET Web Forms page lifecycle, occurring after the page has been rendered to the client and just before the page object is discarded from memory. PreRender comes before rendering, LoadComplete happens after Load, and InitComplete occurs after initialization - all well before the final cleanup.