How to reference a Master Page from a user control?
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.