So I'm publishing my .Net 4.0 ASP.NET web application under c:\inetpub\wwwroot\myTestApp. However, whenever I try to access it via the browser (using http://localhost/myTestApp) it seems that the application cannot find any resources (scripts, images, etc)
When I'm looking at the requests, i see that it somehow requests http://localhost/myTestApp/myTestApp/Scripts/jquery.validate.min.js instead of http://localhost/myTestApp/Scripts/jquery.validate.min.js
More info:
1. When I'm debugging using development server/ IIS, it works OK.
2. If I publish the application directly as a website, it also works OK.
3. The folder where I'm trying to publish the application is under "Default Web Site" and I've already configured it as a web application under IIS
What am i doing wrong?