There is one requirement for the Title attribute to work.
tag in the Master Page must be a server-side Head tag.
tag must include the runat="server" attribute.
File: Default.master
<%@ Master Language="C#" %>
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
Simple Master
File: Default.aspx
<%@ Page Language="C#" MasterPageFile="~/Default.master"
Title="Content Page Title" %>
ID="Content1"
ContentPlaceHolderID="ContentPlaceHolder1"
Runat="Server">
Content in the first column
Content in the first column
ID="Content2"
ContentPlaceHolderID="ContentPlaceHolder2"
Runat="Server">
Content in the second column
Content in the second column