Accessing a Property of a Master Page from a class that's not part of a content page in ASP.NET - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T14:05:34Zhttp://stackoverflow.com/feeds/question/916044http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/916044/accessing-a-property-of-a-master-page-from-a-class-thats-not-part-of-a-content-p0Accessing a Property of a Master Page from a class that's not part of a content page in ASP.NETfr0man2009-05-27T14:32:30Z2009-05-27T15:15:31Z
<p>So I'm wiring up my first MasterPage, and everything is working great except for one thing. This is a legacy app, and I have an old BasePage class that all my content pages inherit. It inherits from System.Web.UI.Page, but has no content itself (no .aspx file). It runs a bunch of the user authentication/role granting menu building. I want to keep this functionality but use it to set controls on my MasterPage to build out the menus. I cannot for the life of me figure out how to reference the MasterPage properties without a MasterType declaration in a content page. </p>
<p>My MasterPage class is called NIMS_Master, and I have the following in it (just trying to get started):</p>
<p><code>
public partial class NIMS_Master : System.Web.UI.MasterPage
{
public string MenuList { get; set; }</p>
<pre><code> protected void Page_Load(object sender, EventArgs e)
{}
}
</code></pre>
<p></code></p>
<p>With a MasterType declaration in one of my content pages:
<code><br />
<%@ MasterType VirtualPath="~/NIMS_Master.master" %>
</code></p>
<p>I can access my property in Login.aspx.cs as follows:</p>
<p><code>
this.Master.MenuList = "this is the menu list";
</code></p>
<p>But in my BasePage.cs, I have nowhere to put the MasterType declaration. All the google searches indicate I have to cast my NIMS_Master class as a Master, but I cannot get it to work to save my life. I've tried several different things, but my NIMS_Master class just doesn't show up in BasePage. </p>
<p><code>
((this.Master)NIMS_Master).MenuList = "This is a menu list";
</code></p>
<p>BasePage.cs is in my App_Code directory and my MasterPage file is in the application root, if that matters.</p>
http://stackoverflow.com/questions/916044/accessing-a-property-of-a-master-page-from-a-class-thats-not-part-of-a-content-p/916074#9160740Answer by Manu for Accessing a Property of a Master Page from a class that's not part of a content page in ASP.NETManu2009-05-27T14:38:25Z2009-05-27T14:38:25Z<p>As I see it, your cast should be: ((NIMS_Master)this.Master).MenuList</p>
http://stackoverflow.com/questions/916044/accessing-a-property-of-a-master-page-from-a-class-thats-not-part-of-a-content-p/916339#9163390Answer by fr0man for Accessing a Property of a Master Page from a class that's not part of a content page in ASP.NETfr0man2009-05-27T15:15:31Z2009-05-27T15:15:31Z<p>So I had my BasePage in App_Code and was trying to set a property of my NIMS_Master class which was in the application root directory. I had to create a MasterBase class that inherits from System.Web.UI.MasterPage in App_Code and put my properties there. Sheesh, I'm not even sure why I thought I could access those class properties from within app_code.</p>