I'm writing code on the master page, and I need to know which child (content) page is being displayed. How can I do this programmatically?

link|improve this question

feedback

9 Answers

up vote 3 down vote accepted

This sounds like a bad idea to start with. The idea of the master is that it shouldn't care what page is there as this is all common code for each page.

link|improve this answer
1  
+1 Exactly. This very much goes against what a master page is about. – Chris Lively Nov 6 '08 at 16:24
This is a good general rule, but how about something like a breadcrumb? You want it on every page, but you need to know what specific page is loaded to determine the crumbs. For this I typically expose a public function on the masterpage for setting the final crumb, this is called by the page. The other crumbs are determined by the sitemap. – spilliton Jul 14 '10 at 17:01
What would your recommendation be if your master page contained logic to redirect to a 'safe' page under certain circumstances UNLESS the safe page was being displayed? – El Ronnoco Aug 25 '10 at 15:39
@norbertB gives a pretty good solution IMO on how to accomplish the desired outcome without having the master page needing to know what page is being displayed. – Adam Porad Sep 16 '10 at 18:54
feedback

It's better to let the ContentPage notify the MasterPage. That's why the ContentPage has a Master Property and MasterPage does not have Child property. Best pratice in this is to define a property or method on the MasterPage and use this through the Master property of the ContentPage.

If you use this technique it's best to explicitly specify the classname for the MasterPage. This makes to use the MasterPage in the ContentPage.

Example:

//Page_Load
MyMaster m = (MyMaster)this.Master;

m.TellMasterWhoIAm(this);

Hope this helps.

link|improve this answer
I like this. Sometimes the master page does need a little bit of information from its users. This is a clean way to do it. – clintp May 22 '09 at 15:48
This is a good solution to the question. What the original poster was asking how to do wasn't really a good practice to follow, and you gave an solution that directed the OP to following a better practice. Thanks @norbertB! – Adam Porad Sep 16 '10 at 18:53
feedback

I use this:

string pageName = this.ContentPlaceHolder1.Page.GetType().FullName;

It retuns the class name in this format "ASP.default_aspx", but I find that easy to parse for most purposes.

Hope that helps!

link|improve this answer
feedback

I have had a reason to check the child page in the master page.

I have all my menu options on my master page and they need to be disabled if certain system settings are not set up.

If they are not then a message is displayed and the buttons are disabled. As the settings page is a content page from this master page I don't want the message to keep being displayed on all the settings pages.

this code worked for me:

                //Only show the message if on the dashboard (first page after login)
                if (this.ContentPlaceHolder1.Page is Dashboard)
                {
                    //Show modal message box
                    mmb.Show("Warning Message");
                }
link|improve this answer
feedback

I do something similar to this in a project of mine to dynamically attach css files based on the page being loaded. I just get the name of the file from the request:

this.Request.Url.AbsolutePath

And then extract the file name from there. I'm not sure if this will work if you are doing URL re-writes though.

link|improve this answer
feedback

Page.Request.Url.PathAndQuery or one of the other properties of the Url Uri object should be available to you from the master page code.

link|improve this answer
feedback

I don't see an easy way to reference a child page (there is no MasterPage.Child opposite Page.Master) though you could add one and have a base Page class cast its Master property as your Master instance and set a Child property you'd have to create on your Master page to itself during an OnInit override.

I found an article that talks about communicating from a Master Page to a regular Page programmatically that may help (jump to "Master Page To Content Page Interaction").

link|improve this answer
feedback

You can check the page type in the code-behind:

// Assuming MyPage1, MyPage2, and MyPage3 are the class names in your aspx.cs files:

if (this.Page is MyPage1)
{
  // do MyPage1 specific stuff
}
else if (this.Page is MyPage2)
{
  // do MyPage2 specific stuff
}
else if (this.Page is MyPage3)
{
  // do MyPage3 specific stuff
}
link|improve this answer
feedback

You can use:

Request.CurrentExecutionFilePath

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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