I've read through a few posts about getting the title of content pages to display correctly but still am stumped.
My Master Page has the following code:
<head runat="server">
<title>Widgets</title>
<link href="Styles.css" rel="stylesheet" type="text/css" />
</head>
and my content pages have the following code in page load (using VB):
Page.Title = Me.Master.Page.Title & " - Test Email Settings"
Once this page is rendered though, the title comes out as 'Untitled Page - Test Email Settings'. What exactly do i need to do to get the bit from the master page displayed? It should be 'Widgets - Test Email Settings'.
From the posts i've read, i'm sure i'm doing the right thing, the head tags of the master runat server and the content page has no title declaration bar the page load code but just cant get it to work! Tried setting <title runat="server">Widgets</title> in the master too, but no joy with that either.
Thanks.