I have a strange issue that I hope someone can help me with. I have an MVC project (Preview 2), setup with the default directory structure. When I deploy to the IIS 6 webserver, my javascript files are not being found by the View.
So, on the Index page, my <head> tag contains this:
<script type="text/javascript" src="../../Content/pathTest.js" ></script>
That works fine in VS2008 on my development machine, but when I deploy it to a Virtual directory on IIS 6, none of the javascript is found by the view. The CSS files, which use the same "../../Content" structure are loading correctly, though. Does anyone have a workaround, or know why this might be?
Thanks.