Hi,
I have a ASP.NET MVC site where I use the following links in the MasterPage
<script type="text/javascript" src="../../../Scripts/jquery-1.4.4.min.js"></script>
<script type="text/javascript" src="../../../Scripts/jquery-ui-1.8.11.custom.min.js"></script>
<script type="text/javascript" src="../../../Scripts/jquery.cascadingDropDown.js"></script>
<script type="text/javascript" src="../../../Scripts/jquery.maskedinput-1.2.2.js"></script>
This works fine when running from the built in IIS in Visual Studio 2010 and at the host(IIS7). But when deploying it in my own IIS7 under Default Web Site \ MySite the scripts will get a path like this :
http://localhost/Scripts/jquery.cascadingDropDown.js
Instead of :
http://localhost/myPage/Scripts/jquery.cascadingDropDown.js
Why is this working in VS IIS and my Host IIS but not on my local computer IIS?
The webpage runes fine besides this.