vote up 3 vote down star
1

I'm looking for a way to (preferably) strongly type a master page from a user control which is found in a content page that uses the master page.

Sadly, you can't use this in a user control:

<%@ MasterType VirtualPath="~/Masters/Whatever.master" %>

I'm trying to access a property of the master page from the user control and would rather not have to pass the property from the master page to the content page to the user control because multiple content pages use the same user control. One change, one place whatnot.

flag

What about adding a property to the user control called "Master" and then just pass a reference when the control is declared? – Kevin Jan 6 '09 at 14:26
I'm trying to avoid having to pass any references through the control, but good suggestion. – Bryan Denny Jan 6 '09 at 14:33

2 Answers

vote up 6 vote down check

Try Page.Master.

Whatever whatev = (Whatever)Page.Master;

You'll have to make sure you add the proper using statements to the top of your file, or qualify the Master page type inline.

link|flag
vote up 0 vote down

Have you tryed Page.FindControl("name") on the usercontrol?

link|flag

Your Answer

Get an OpenID
or

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