How to reference a Master Page from a user control?

Bryan Denny picture Bryan Denny · Jan 6, 2009 · Viewed 7.5k times · Source

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.

Answer

Dan Herbert picture Dan Herbert · Jan 6, 2009

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.

One potential gotcha is if this control is used by a different page whose master page is NOT the same type. This would only get caught at runtime.