如何将网站图标和页面标题添加到 asp.net 页面

How to Add favicon and page title on to a asp.net page

我有像图片这样的aspx页面:

我想在此页面上添加网站图标和页面标题。我了解到这一点:<head> 标签中的图标和页面标题。我尝试了一些但我没有。我得到很多错误。 请问我该怎么做(不影响代码)?

我添加了 .cs 代码:

protected void Page_Load(object sender, EventArgs e)
{
    this.Title = "Title";
} 

//我得到这个错误:使用页面的标题 属性 需要页面上的 header 控件。 (例如)

对于您显示的代码,您可以在 UxContentHead 内容部分添加您需要的任何 head 标签:

<asp:Content ID="Content1" ContentPlaceHolderID="UxContentHead" runat="server">
      <!-- meta tags ... -->
      <title>My Page Title</title>
      <link rel="icon" 
            type="image/png" 
            href="http://example.com/myicon.png" />
      <link rel="shortcut icon" 
            type="image/png"
            href="http://example.com/myicon.png"/>
</asp:Content>