CSS file not getting downloaded in Visual Studio 2008 SP?
Posted
by theraneman
on Stack Overflow
See other posts from Stack Overflow
or by theraneman
Published on 2009-07-12T16:33:04Z
Indexed on
2010/05/02
19:57 UTC
Read the original article
Hit count: 182
Hi guys, This might sound a little wierd, but all of a sudden the CSS and Javascript files referenced in my master page are not being downloaded while the page is being rendered. I am working on a ASP.NET MVC project and things were all fine like half an hour ago! Here is what I have in head section of the master page,
<link href="/Content/MyCSS.css" rel="stylesheet" type="text/css" />
<script src="/Scripts/jquery-1.3.2.min.js" type="text/javascript"></script>
I can see the CSS class intellisense while designing pages. But in the page source I do not see these files being added. I can see the css being applied in the VS designer. I have tried restarting VS, restarting my machine too. Anyone else faced this situation before. I might go crazy now.
© Stack Overflow or respective owner