asp.net - Failed to load resource error on client -


i run web project error on client side:

failed load resource: server responded status of 404 (not found)   http://localhost:32573/favicon.ico 

i using:

  • visual studio2013
  • angularjs
  • jquery
  • bootstarp

any idea cause error , how solve it?

thank in advance.

maybe mime type, iis add .ico mimetype image/x-icon

or in web config if not want set mime type on default website (this used now: http://localhost:32573)

go in web config , set this:

<system.webserver>    <staticcontent>         <mimemap fileextension=".ico" mimetype="image/x-icon" />    </staticcontent> </system.webserver> 

Comments

Popular posts from this blog

How to provide Authorization & Authentication using Asp.net, C#? -

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

How to use Authorization & Authentication in Asp.net, C#? -