vote up 2 vote down star
3

I have a few pages on my asp.net website that I would like to turn off a control on the master page. Is there a way to communicate with the master page from a child page?

flag

5 Answers

vote up 4 vote down check

Easiest way is to setup a property on your master page that handles the on/off functionality when called. Then in your child page set the MasterType directive to get a strongly typed reference to your master page to bypass the need to cast.

Your child page would have:

<%@ MasterType VirtualPath="~/Site1.Master" %>

And to call the property of the master page:

Master.MyLabel = false; // or true

So on your master you could have:

public bool MyLabel
{
    get
    {
        return masterLabel.Enabled;
    }
    set
    {
        masterLabel.Enabled = value;
    }
}
link|flag
Marks anser got me going on it but this is answer is how I was able to implement it. Thanks Ahmad. – Lloyd Jul 7 at 15:29
Nice one. One thing you can do is go into your .designer.cs file and change the scope of the control there to public, then you have all properties to hand in your page logic. Also if you are exposing a public property, its usually best to use CamelCase, pascalCase is for private fields. :) – Mark Dickinson Jul 7 at 16:00
@Mark: good info! I agree about the CamelCase, missed that. Fixed now. – Ahmad Mageed Jul 7 at 16:08
+1 for you then :) Nice answer Ahmad. – Mark Dickinson Jul 7 at 16:19
1  
@Mark: it's best not to expose master page controls. What if the master page layout changes? Just expose a property, method or event. – John Saunders Jul 7 at 18:55
show 1 more comment
vote up 0 vote down

I was looking for something similar, but this solution doesn't seem to work for me. I have a nested master page. Does this work for a nested master? When I implemented, it's not recognizing the control that I added to my master.

link|flag
vote up 7 vote down

You need to use a MasterType directive in your page markup

<%@ MasterType TypeName="Namespace.Etc.MyMasterPage" %>

Then you will be able to access any public properties of the page's master page using

this.Master.PropertyIWantToIntefereWith...

Hope this helps

link|flag
I've been doing that through casting the Page object... this sounds SOOO much better! Thanks! – Telos Jul 7 at 15:03
It was not clear to me where to determine the TypeName value so I used the VirtualPath option for the MasterType and it worked great. Thanks! – Lloyd Jul 7 at 15:09
Never new this! Thanks Mark +1! – GenericTypeTea Jul 7 at 15:09
+1 indeed!!! Didn't know about this either and it make it so much easier to work with some of the navigation elements in my app! – Dillie-O Jul 7 at 18:59
vote up -2 vote down
this.Master.FindControl("controlid").dosomethinghere
link|flag
-1 hard coding control names as strings is BAD – GenericTypeTea Jul 7 at 15:03
vote up 2 vote down

Here's an example of how to communicate with Master Pages from Child Pages.

In the master page, create a property for the control you wish to access, say a label called lblUser...

public string MyProperty
       {
        set { lblUser.Text = value; }
       }

In the child page, access the property you have just created as in the following example...

((MyMaster)this.Master).MyProperty = "Text changed from Sub Page";

We are able to do this because the Master is simply a class that inherits System.Web.UI.MasterPage.

And the Label.Text property that we created is just a property of the Master class (this name will be the specific name of your current Master Page, in this case MyMaster).

Notice it won't work without a cast to your specific Master Page class and this is because you added a field that does not exist in System.Web.UI.MasterPage, the type of this.Master, but in your specific Master Class.

link|flag
+1 to this! Same as my solution, only more elegant! – GenericTypeTea Jul 7 at 15:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.