ASP.NET page events (which includes user control and master page)
ASP.NET page when used with user controls and master pages makes it more important to understand the event lifecycle.
The general rule for how events are raised is :
1. The initialization events are raised from the innermost control to the outermost one
2. All other events are raised from the outermost control to the innermost one
Advertisement