Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I set my favicon?

How do I set my Favicon in my ASP.Net MVC2 application?

The .ico file is already in the Content folder, now what do I do?

like image 484
Sergio Tapia Avatar asked Feb 27 '23 13:02

Sergio Tapia


1 Answers

Add this to the section of your master page(s):

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

like image 174
Bennor McCarthy Avatar answered Apr 29 '23 04:04

Bennor McCarthy