你最好在Master的CS文件中定义一个 public方法:
如
public string temp = "";
public string getTitle(string title)
{ get{ _value = temp;} set{ temp = _value;}}
然后在master 的前台 使用 <%=temp %> 即可。
引用Master页的使用方法:
this.Master.getTitle(xxx); xxx代表你的标题!
this.Master.Page.Title = dc;改成this.Title = dc;