I have this asp.NET web site that for some odd reason doesn't want to load css and script from the plugin I just wrote. This occurs if I use View in browser option in Visual studio. If I preview a sample file in browser directly from file system, it works OK.
I have checked source code of ASP site and it contains both files. In Firefox I even clicked on both hrefs and the content was displayed.
clip from code:
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
...
<link rel="stylesheet" type="text/css" href="plugin/adPlayer/adPlayer.css" />
</head>
<body>
...
<script type="text/javascript" src="plugin/adPlayer/adPlayer.js"></script>
</body>
Any ideas?
Edit: I am using ASP.NET development server for preview.
Edit 2: Installed IIS 5.1. Problem remains. Btw, this only occurs in Firefox browser. There is no request for those CSS and JS files in Firefox.