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.

link|improve this question

feedback

5 Answers

up vote 3 down vote accepted

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

link|improve this answer
feedback

Check out this page. It will let you know what events fire when. Looks like you could use the PreLoad event.

link|improve this answer
feedback

This should help: http://msdn.microsoft.com/en-us/library/ms178472.aspx

You're looking for PreLoad, i think.

link|improve this answer
feedback

It's a littlebit problem, because the control can be placed inside the page after the "Page_Load" event.

In one my historic project, I derived all pages from my class "PageEx : System.Web.UI.Page". Which had a property "CurrentState" of type "enum PageStates { PreInit, Init, PostInit, PreLoad, /* etc... */ }". Than all my controls was able recognized state of page cycle.

link|improve this answer
feedback

There's a longer list at ASP.NET 2.0 Event Order (note this is for 2.0).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.