I have my project deployed on iis 7.5. Now when I try to access it from any other machine in firefox ( in IE its seems to be working fine) , all the files are getting rendered (html, js) except the css files.
By going through the other posts, I have checked that the MIME type for .css files is there in my iis MIME settings.
I am including my css file in my head section as :
@Html.CssInclude("jquery.ui.core.css")
In the response header, I am getting -
Content-Type text/html; charset=utf-8
I am including my javascript files in the same way:
@Html.ScriptInclude("jquery-1.7.min.js")
But, in my response headers, I am getting
Content-Type application/x-javascript
I am not getting why is the behaviour different for css files.. Please help..