A trivial question but I'm having one of those moments...
I have a masterpage (let's call it M) in a website solution. Now I want all my content pages to derive from a custom class (called B, which in turn inherits from Page).
Now the problem is, I want B to be able to access properties and methods of M (master page). Doing so in individual content pages works fine (as the methods and properties are declared public in the masterpage):
M mPage = (M)Page.Master;
But doing this in B fails. I've set the MasterPageFile property of B in its PreInit method too, so its masterpage is set correctly. As I understand it, as this is a website solution and not a web application, I'm trying to access run-time materials at compile-time which doesn't fly.