I have the following file organization:
Project > SubFolder1> SubFolder2> Subfolder3> Test.aspx
and I am trying to include Jquery library from
Project> Scripts
in test page I did both:
<script src="~/Scripts/jquery-1.9.1.js"></script>
and
<script src="../../../Scripts/jquery-1.9.1.js"></script>
but it gives me that the resource cannot be found and the URI in source view is:
localhost:44388/Project/SubFolder1/SubFolder2/SubFolder3/~/Scripts/jquery-1.9.1.js
How can I include the library correctly?