Which are the events of an ASP .Net server control and how does their order relate to the containing page’s events?
The concrete problem is that I am looking for an event inside the server control that fires before the Page_Load event of the containing page.
With regards to how they relate to Page events, at least for Init and Load:
‘Although both Init and Load recursively occur on each control, they happen in reverse order. The Init event (and also the Unload event) for each child control occur before the corresponding event is raised for its container (bottom-up). However the Load event for a container occurs before the Load events for its child controls (top-down).’
From http://msdn.microsoft.com/en-us/library/ms178472.aspx