Multiple choice asp.net

What is last stage of a web forms life cycle?

  1. Page Events

  2. Page_Load

  3. Page_Unload

  4. Page_Init

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Page_Unload is the final stage in the ASP.NET WebForms lifecycle, occurring after the page has been rendered and sent to the client, allowing for cleanup operations like closing database connections and releasing resources. Page_Init occurs early, Page_Load occurs during the loading phase, and "Page Events" is too generic to be a specific lifecycle stage.