hi
When does an event of a master page fire? What is the order of firing events between Master page and Content page in asp.net?
hi
When does an event of a master page fire? What is the order of firing events between Master page and Content page in asp.net?
The following is the sequence in which events occur when a master page is merged with a content page:
Content page PreInit event.
Master page controls Init event.
Content controls Init event.
Master page Init event.
Content page Init event.
Content page Load event.
Master page Load event.
Master page controls Load event.
Content page controls Load event.
Content page PreRender event.
Master page PreRender event.
Master page controls PreRender event.
Content page controls PreRender event.
Master page controls Unload event.
Content page controls Unload event.
Master page Unload event.
Taken from MSDN