what im trying to do is to read the current master page's title, and append something to it from the codebehind of the child page.

I tried to use:

this.Master.Page.Title.ToString()

But it returned null. Any ideas?

In the master page, here is how i set the title:

<head runat="server">
    <title>The Magic Finger - Web Design</title>
    <link href="App_Themes/Style.css" rel="stylesheet" type="text/css" />
</head>
link|improve this question

73% accept rate
If your code is inside a page, use Title = "Some title"; If you are inside a master page, use Page.Title = "Some title";. – Uwe Keim Oct 22 '11 at 19:53
This doesn't solve your problem, but Master.Page refers to the Page control that's being rendered inside the Master. ie: (this == this.Master.Page). – rossisdead Oct 22 '11 at 22:58
feedback

2 Answers

up vote 2 down vote accepted

Try Page.Title instead, the title is set by the content page.

link|improve this answer
What i want to do is APPEND to the title. So if in the master page the title is "Test", i want so that in the child page i append "Home page", resulting in the final title "Test Home page". – TheGateKeeper Oct 22 '11 at 22:26
feedback

Set the page title as normal in your Master Page. In your child page, use

    Me.Master.Page.Title &= " - This text will be appended"

Important: make sure you do not have "Title" as an attribute in the child page's .aspx. If you have this:

    <%@ Page Title="" Language=""

Make sure to remove the title attribute.

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.