I have a global master page with sub pages and a few sub master pages.
On some pages, I load a custom user control named 'ModalPanel' (I'm sorry to say that the modal panel that comes with the AJAX Toolkit doesn't do as I want) decleratively, with the custom tag; <uc:ModalPanel ID="ModalPanel1" ...
Is it possible to detect from the global master page if such a 'ModalPanel' control is loaded in a page? And even if there's a sub master page between them?
The ID of the 'ModalPanel' control could be anything, but if this isn't possible, I could give the 'ModalPanel's specific IDs and use the 'FindControl' method, but that's not exactly what I want.