Page

Add a Favicon to your ASP.Net page

In this article i  am going to explain How to create favicon icon for website in Asp.net. If you have .ico file of your logo or picture then add the following line to the head section  of the default page and the master page of your website to add Favicon icon for all of your pages e.g.


<head id="Head1" runat="server">
                <title>My Website</title>
                <link id="Link1" runat="server" rel="shortcut icon" href="favicon.ico" type="image/x-icon"/>
                <link id="Link2" runat="server" rel="icon" href="favicon.ico" type="image/ico"/>

</head>




OUTPUT




No comments:

Post a Comment