This is what I have in the aspx page:
<head runat="server">
<title>Website - <asp:ContentPlaceHolder ID="HeadContent" runat="server" /></title>
</head>
This is what's in the view:
<asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server">
Homepage
</asp:Content>
For some reason, this HTML is generated:
<title>Homepage</title>
The 'Website - ' part is getting removed. Anybody know how I can fix this?