I would like to overwrite the MasterPage title. NOTE: I'm not talking about setting a portion of the title from the content page.I have this in my MasterPage:\[code\]<head id="Head1" runat="server"> <title>My Site | <% = Page.Title %></title></head>\[/code\]Which, in combination with this on my content pages...\[code\]<%@ Page Title="Content page title" ... %>\[/code\]delivers the following to the user:\[code\]<title>My Site | Content page title</title>\[/code\], which is great 99.9% of the time. However, I would like to be able to change the entire title delivered to the client so that it does not include the portion specified in the head of the MasterPage, IE: \[code\]<title>Special content page</title>\[/code\]Is it possible to change the entire page title from the content page programmatically? I do not want to change the configuration of the MasterPage or use a different MasterPage.