vote up 2 vote down star
2

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?

flag

7 Answers

vote up 3 vote down check

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|flag
+1 Exactly. This very much goes against what a master page is about. – Chris Lively Nov 6 '08 at 16:24
vote up 1 vote down

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|flag
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 at 15:48
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

You can use:

Request.CurrentExecutionFilePath

link|flag

Your Answer

Get an OpenID
or

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