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?
|
feedback
|
|
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. | |||||||||||
feedback
|
|
It's better to let the 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:
Hope this helps. | |||||
feedback
|
|
I use this:
It retuns the class name in this format "ASP.default_aspx", but I find that easy to parse for most purposes. Hope that helps! | |||
|
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:
| |||
|
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:
And then extract the file name from there. I'm not sure if this will work if you are doing URL re-writes though. | |||
|
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. | |||
|
feedback
|
|
I don't see an easy way to reference a child page (there is no 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"). | |||
|
feedback
|
|
You can check the page type in the code-behind:
| |||
|
feedback
|
|
You can use: | ||||
|
feedback
|