I'm using the ASPX template system. Have a master page which mt template uses and then all pages use that template.
The master page has these tags:
<title id="Title1" runat="server">My site</title>
<asp:literal runat="server" id="ltlTags" enableviewstate="false" />
And then in the code behind:
protected override void OnPreRender(EventArgs e)
{
base.OnPreRender(e);
ltlTags.Text = HeaderTags;
}
I go into the CMS desk, edit the properties of any page, in the 'Meta Data' area I de-tick inherit and enter the title and the meta description. Meta description works but the title remains unchanged.
Any ideas?