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>
Try Page.Title instead, the title is set by the content page.