Skip to content

Instantly share code, notes, and snippets.

@Jalalx
Last active July 20, 2019 07:27
Show Gist options
  • Save Jalalx/bb1589bd66a386b47f2e8fc69e802c7d to your computer and use it in GitHub Desktop.
Save Jalalx/bb1589bd66a386b47f2e8fc69e802c7d to your computer and use it in GitHub Desktop.
ASP.NET WebForms Call Hierarchy

ASP.NET WebForms Call Hierarchy

Init

  1. Child User Control Init
  2. Parent User Control Init
  3. Master Page Init
  4. Page Init

Load

  1. Page Load
  2. Master Page Load
  3. Parent User Control Load
  4. Child User Control Load

Render

  1. Page Render
  2. Parent User Control Render
  3. Child User Control Render

Unload

  1. Child User Control Unload
  2. Parent User Control Unload
  3. Master Page Unload
  4. Page Unload
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment