我有一个名为 Faculty management 的应用程序在 asp.net 中使用 c# 完成,我需要在浏览器顶部显示一个标题 FACULTY,浏览器中是否有任何代码或任何设置?
就像这里谷歌我想要的名字 Faculty.How to do this..?
当您使用母版页时,您必须在内容页的@Page 指令中设置标题:
<%@ Page Language="C#" MasterPageFile="~/FacultyMaster.master" AutoEventWireup="true" Title="Faculty" %>
如果您在标准页面上,则只需在 HTML 中设置标题:
<head runat="server">
<title>Faculty</title>
...
</head>
要添加图标,您可以使用此处提供的解决方案:
<link rel="shortcut icon" href="http://sstatic.net/stackoverflow/img/favicon.ico">