I have a UserControl inheriting from another, and my question is simple. Does the control’s page load fire first, or does the base class page load fire first?
I have a UserControl inheriting from another, and my question is simple. Does the
Share
“The Page calls the OnLoad event method on the Page, then recursively does the same for each child control, which does the same for each of its child controls until the page and all controls are loaded.”
From this link: http://msdn.microsoft.com/en-us/library/ms178472.aspx
So to answer plainly, the Page_Load event is called before the load event in user controls