What is the last stage of the Web forms lifecycle?
-
Init
-
PreRender
-
InitComplete
-
Page_unload
-
LoadComplete
D
Correct answer
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.