我无法设置ASP.NET页面的标签标题。
我有嵌套母版页。我可以成功设置标签图标,但标题始终显示“主页”。我做错了什么?
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Topbar.master.cs" Inherits="WebApplication1.Masters.Topbar" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>SomeTitle</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="~/Styles/public.css" rel="stylesheet" type="text/css" />
<link rel="Shortcut Icon" href="~/Images/ionicon.ico" />
<asp:ContentPlaceHolder ID="head" runat="server">
</asp:ContentPlaceHolder>
</head>
<body>
...
<%@ Master Language="C#" MasterPageFile="~/Masters/Topbar.Master" AutoEventWireup="true"
CodeBehind="Public.Master.cs" Inherits="WebApplication1.PublicMaster" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
<asp:ContentPlaceHolder ID="head" runat="server">
</asp:ContentPlaceHolder>
</asp:Content>
答案 0 :(得分:8)
在内容页面上,您应该使用@Page指令,您可以在其中设置页面标题:
<%@ Page Language="C#" MasterPageFile="~/Master1.master"
AutoEventWireup="true" Title="Untitled Page" %>
答案 1 :(得分:1)
您也可以通过将此块保留在母版页代码文件
中从服务器端执行此操作string pageNM = Request.Url.ToString();
if (pageNM.Contains("index.aspx"))
{
this.Page.Title = "My custom Index Page Title";
}