Multiple choice technology web technology

What is the last stage of the Web forms lifecycle?

  1. Init

  2. PreRender

  3. InitComplete

  4. Page_unload

  5. LoadComplete

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