Project Scripts_Folder Jquery.js Jcustom.js Authenticated_Stuff_Folder A_Page.aspx A_Nother_Page.aspx About.aspx site.master Ive tried setting up the jquery on the site.master like so (after head)
<script src="Scripts_Folder /jquery.js" type="text/javascript"></script> <script src="Scripts_Folder /jcustom.js" type="text/javascript"></script> But when I click on the menu structure container pointing to A_Page.aspx it says JQuery not defined So I changed to
<script type="text/javascript" src="<%= Page.ResolveClientUrl("~/Scripts_Folder /jquery.js") %>"></script> <script type="text/javascript" src="<%= Page.ResolveClientUrl("~/Scripts_Folder /jcustom.js") %>"></script> Now it works…but only once. If I click on the A_Page,aspx container, it will go to the page fine. If I now click on the container for A_Nother_Page.aspx it will display the Htpp 404 and the path way will show: localhost:port/Project/ Authenticated_Stuff_Folder /Authenticated_Stuff_Folder / A_Nother_Page.aspx (the directory path is there TWICE..