A page could have an attribute MasterType
to make Page.Master
to be strong-typed:
<%@ MasterType VirtualPath="~/Site.master" %>
If all my pages inherits specific class inherited System.Web.UI.Page
itself, can I someway get access to this.Master
property in it so I could call master page's methods?