ASP.Net Master Page and File path issues - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T13:38:52Zhttp://stackoverflow.com/feeds/question/697660http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/697660/asp-net-master-page-and-file-path-issues3ASP.Net Master Page and File path issuesTheDude2009-03-30T15:18:16Z2009-08-31T13:04:56Z
<p>I'm trying to add a script reference to jQuery in my master page so that it will work for any page. It currently looks like this</p>
<pre><code><script type="text/javascript" src="jquery.js"></script>
</code></pre>
<p>The problem is that the path is always relative to the executing aspx page so this will only work if the "jquery.js" file is located in the same folder. To make it work I have to change the line to:</p>
<pre><code><script type="text/javascript" src="../../jquery.js"></script>
</code></pre>
<p>This is obviously less than ideal because it will only work for pages that are two levels deep from the root folder. If I try the following, IIS throws an error about an unexpected character.</p>
<pre><code><script runat="server" type="text/javascript" src="~/jquery.js"></script>
</code></pre>
<p>Any ideas?</p>
<p><strong>EDIT:</strong> I forgot to mention as well that the script MUST be in the head tag</p>
<p>The current top answer throws a "<em>ASP.NET Ajax client-side framework failed to load.</em>" error when I add it to my master page. Its thrown from javascript and not the .Net compiler. If I move the ScriptManager to the head section where it should be I get a compile error about the ScriptManager needing to be inside a form tag.</p>
<p>The third answer throws a "<em>Illegal characters in path.</em>" exception from the compiler</p>
<p><strong>EDIT 2:</strong> When I add that line to my head tag I get this error from IIS.</p>
<p><em>The Controls collection cannot be modified because the control contains code blocks (i.e. <% ... %>)</em></p>
<p><strong>SOLVED:</strong> I took the edited response from the answer below and put it inside an <em>asp:ContentPlaceHolder</em> element</p>
http://stackoverflow.com/questions/697660/asp-net-master-page-and-file-path-issues/697670#6976700Answer by karim79 for ASP.Net Master Page and File path issueskarim792009-03-30T15:21:37Z2009-03-30T15:21:37Z<pre><code><script type="text/javascript" src="/full/path/to/jquery.js"></script>
</code></pre>
http://stackoverflow.com/questions/697660/asp-net-master-page-and-file-path-issues/697674#6976747Answer by Cory Larson for ASP.Net Master Page and File path issuesCory Larson2009-03-30T15:22:49Z2009-03-30T16:30:05Z<p>Try:</p>
<pre><code><asp:ScriptManager ID="ScriptManager1" runat="server">
<Scripts>
<asp:ScriptReference Path="~/jquery.js" />
</Scripts>
</asp:ScriptManager>
</code></pre>
<p><strong>EDIT:</strong> </p>
<p>If you REALLY need this in your <code><head></code> section, you could do something like:</p>
<pre><code><script type="text/javascript" src="<%= Page.ResolveClientUrl("~/jquery.js") %>"></script>
</code></pre>
http://stackoverflow.com/questions/697660/asp-net-master-page-and-file-path-issues/697679#6976790Answer by XOR for ASP.Net Master Page and File path issuesXOR2009-03-30T15:24:20Z2009-03-30T15:24:20Z<p>If this script tag goes directly to the browser, then you unlikely can substitute your site's root there. At least not on the server. So you can:</p>
<ol>
<li>Deploy site to the root of domain
name and use absolute paths
(simplest solution). </li>
<li>Insert this
link with server control. </li>
<li>Preprocess resulting HTML before
sending it to the client (with
HttpResponse.Filter).</li>
</ol>
http://stackoverflow.com/questions/697660/asp-net-master-page-and-file-path-issues/697692#6976920Answer by Keltex for ASP.Net Master Page and File path issuesKeltex2009-03-30T15:26:42Z2009-03-30T15:26:42Z<p>If you're not going to us asp:ScriptManager or absolute paths then you can do it like this:</p>
<pre><code><script runat="server" type="text/javascript"
src='<%= Page.ResolveUrl("~/jquery.js") %>'></script>
</code></pre>
http://stackoverflow.com/questions/697660/asp-net-master-page-and-file-path-issues/697746#6977460Answer by Hrvoje for ASP.Net Master Page and File path issuesHrvoje2009-03-30T15:40:06Z2009-03-30T15:40:06Z<p>You can also use <base> HTML tag: </p>
<pre><code><base href="http://www.domain.com"></base>
</code></pre>
<p>and then all the links in header section are relative to base address: </p>
<pre><code><script type="text/javascript" src="scripts/jquery.js"></script>
</code></pre>
<p>It's often useful when you have multiple publishing destinations, like local dev web server, demo server, etc. You just replace that base URL.</p>
http://stackoverflow.com/questions/697660/asp-net-master-page-and-file-path-issues/1357346#13573460Answer by Vincent D'Souza for ASP.Net Master Page and File path issuesVincent D'Souza2009-08-31T12:58:31Z2009-08-31T12:58:31Z<p>I do not know whether you guys found the solution to your problem or not. I was facing the same problem and going nuts to figure out why do I get "jQuery is undefined" error on the plugins i use. I tried all the solutions i get from the internet but no luck at all.</p>
<p>But, suddenly something splash on my mind that may be the script files should be in order. So, I moved the jquery referece to first position and everything start working like charm.</p>
<p>Remember guys, if you're using any plugins with jquery, make sure you use the folloing order of setting reference to those fiels.</p>
<ol>
<li>reference to the jquery library</li>
<li>reference to the other subsequent plug-in libraries and so on...</li>
</ol>
<p>e.g.:
1. "script src="js/jquery-1.3.2.min.js" type="text/javascript"...
2. "script src="js/jqDnR.min.js" type="text/javascript"...
3. "script src="js/jquery.jqpopup.min.js" type="text/javascript"...
4. "script src="js/jquery.bgiframe.min.js" type="text/javascript"...</p>
<p>Always make sure you must put the jquery reference to first and then the subsequent libraries.</p>
<p>Hope, this solves your problem especially when you use with MasterPages. Its very strange that it works no matter what order you use when you don't use MasterPages but when you do, then it somehow requres the proper order.</p>
<p>Good luck and happy coding,</p>
<p>Vincent D'Souza</p>
http://stackoverflow.com/questions/697660/asp-net-master-page-and-file-path-issues/1357371#13573710Answer by KOTJMF for ASP.Net Master Page and File path issuesKOTJMF2009-08-31T13:04:56Z2009-08-31T13:04:56Z<p>You can also make the head tag runat="server" and then use the ~ directive in your script includes. You don't want to make your script blocks runat="server" unless they are meant to be server-side code.</p>
<pre><code><head runat="server">
<script src="~/jquery.js" ></script>
</head>
</code></pre>