I am working on a asp.net mvc c# jquery application. For some reason when I drag a file from the solution explorer on to my code page I no longer get the path to the file. All I get is
<a href="../../">../../</a>
If I start with a new MVC project and drag a file say the jquery file Visual Studio gives me this,
<script src="../../Scripts/jquery-1.3.2.min.js" type="text/javascript"></script>
but in my existing project when I drag the same file I get this,
<a href="../../">../../</a>
Any idea why?