hello.. I have a BasePage that inherits from the Web.UI.Page class. I have put some excellent functionality in that BasePage that I need to carry forward to another inheriting page, the BasePopUpPage that will inherit from my BasePage..

In the CreateChildControls() routine, I need to override this in my basePopUpPage because in the BasePage, this handles loading the header/footer for my pages.. however, on my PopUpPages, i dont want the header and footer.. however, I do need to call the Web.UI.Page class from the BasePage Class.. so basically, How can I override the BasePage's CreateChildControls() and still call mybase.mybase.createchildcontrols() w/out calling the MyBase.CreateChildControls?

understand?

Thanks
-mcd