I have MVC4 web app project and I want to use http://fortawesome.github.io/Font-Awesome/
I have font awesome folder inside Content directory and I have in my Layout file this
<link href="@Url.Content("~/Content/font-awesome-4.2.0/css/font-awesome.min.css")" rel="stylesheet" />
or this
<link href="~/Content/font-awesome-4.2.0/css/font-awesome.min.css" rel="stylesheet" />
and in debug it works but after uploading on iis server it does not work (edit: I mean it does not show the images), how can I implement that .css? I'm using Razor.
EDIT: I discover some weird behaviour. In debug mode with VS the IE load CSS fine.
After deploying on IIS the IE cannot load CSS. But Chrome does load CSS ! I check it on several PCs and delete history and cache, so now application users are using Chrome in access to that App :-P