Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

asp.net on page load what is the order of events? [duplicate]

Tags:

asp.net

Possible Duplicate:
What is the ‘page lifecycle’ of an ASP.NET WebForm?

when i am opening an asp.net page, what is the order of the events like PreInit, etc that goes on?

like image 685
Alex Gordon Avatar asked Dec 10 '22 17:12

Alex Gordon


1 Answers

This page has a good explanation.

To summarize:

  • PreInit
  • Init
  • InitComplete
  • PreLoad
  • Load
  • Control events
  • LoadComplete
  • PreRender
  • SaveStateComplete
  • Render
  • Unload
like image 135
Aaron Avatar answered Feb 19 '23 05:02

Aaron