Hi,
I would suggest that you can try to edit the Literal's text in the content page's codebehind, first, you can expose the literal that is in the title section as a public property in the master page'a codebehind:
for example:
public Literal literal
{
get
{
return this.Literal1;
}
}
then add the @MasterType directive for the content page :
<%@ Page Language="C#" Title="My Page" MasterPageFile="~/Menu/Cases/Cases/case13/MasterPage.master" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="Menu_Cases_Cases_case13_Default" culture="auto" meta:resourcekey="PageResource1" uiculture="auto" %>
<%@ MasterType VirtualPath="~/Menu/Cases/Cases/case13/MasterPage.master" %>
So, you can edit the literal in the contentpage's codebehind:
protected void Page_Load(object sender, EventArgs e)
{
this.Master.literal.Text = "My Page";
}
This works on my local.
Hope it helps.
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
Yours sincerely,
Amanda Wang
Microsoft Online Community Support