0

I have a application named as Faculty management done in asp.net with c#,I need a title FACULTY to be displayed in top of the browser,is there any code for that or any settings present in the browser? enter image description here

Like here Google i want the name Faculty.How to do this..?

1 Answers1

2

When you use a master page, you have to set the title in the @Page directive in the content page:

<%@ Page Language="C#" MasterPageFile="~/FacultyMaster.master" AutoEventWireup="true" Title="Faculty" %>

If you're on a standard page, you can just set the title in the HTML:

<head runat="server">
    <title>Faculty</title>
    ...
</head>

To add an icon, you can use the solution provided here:

<link rel="shortcut icon" href="http://sstatic.net/stackoverflow/img/favicon.ico">
Community
  • 1
  • 1
Koen
  • 2,501
  • 1
  • 32
  • 43