开发者

Favicon Not Showing

开发者 https://www.devze.com 2023-03-11 23:23 出处:网络
I have a favicon in my ASP.NET project that\'s not showing up. I have a masterpage located at ~/MasterPages/MasterPage.master that holds the favicon. My markup is as follows:

I have a favicon in my ASP.NET project that's not showing up. I have a masterpage located at ~/MasterPages/MasterPage.master that holds the favicon. My markup is as follows:

<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"/>
<link rel="icon" href="/favicon.ico" type="image/x-icon"/>

The favicon is loca开发者_运维百科ted in the project root. The dimensions are 16x16 and it's 32-bit depth. I've cleared my browser's cache, rebooted and nothing is working. Any suggestions as to what I should do?


Try placing a ~ and set the link elements to runat=server

<link runat="server" rel="shortcut icon" href="~/favicon.ico" type="image/x-icon" />
<link runat="server" rel="icon" href="~/favicon.ico" type="image/ico" />

This also needs to be done in the <head> section of the page.


Try to leave the type away, clear the browser cache and go to the favicon address manually and add some parameters to it. That should fix it. Maybe you could tell me your website address, then I will look, if it shows up here.


Right click on the solution and go to Properties. Under Application > Resources change the default icon to your chosen one.


Load up fiddler http://www.fiddler2.com/fiddler2/ and look for the request from the browser for it - that will show you if its successful, a cache issue, etc.


In a .NET Core app (MVC template) try moving the favicon.ico file to the lib folder instead of the wwwroot folder.


I finally solved this problem by renaming favicon.ico to myicon.ico, and reference it in the head <link rel="icon" href="~/myicon.ico" type="image/x-icon" />


I used this method in ASP.NET:

<link rel="shortcut icon" type="image/ico" href="~/favicon.png">
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号