ASP.Net Master Page and File path issues - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T13:38:52Z http://stackoverflow.com/feeds/question/697660 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/697660/asp-net-master-page-and-file-path-issues 3 ASP.Net Master Page and File path issues TheDude 2009-03-30T15:18:16Z 2009-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>&lt;script type="text/javascript" src="jquery.js"&gt;&lt;/script&gt; </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>&lt;script type="text/javascript" src="../../jquery.js"&gt;&lt;/script&gt; </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>&lt;script runat="server" type="text/javascript" src="~/jquery.js"&gt;&lt;/script&gt; </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. &lt;% ... %>)</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#697670 0 Answer by karim79 for ASP.Net Master Page and File path issues karim79 2009-03-30T15:21:37Z 2009-03-30T15:21:37Z <pre><code>&lt;script type="text/javascript" src="/full/path/to/jquery.js"&gt;&lt;/script&gt; </code></pre> http://stackoverflow.com/questions/697660/asp-net-master-page-and-file-path-issues/697674#697674 7 Answer by Cory Larson for ASP.Net Master Page and File path issues Cory Larson 2009-03-30T15:22:49Z 2009-03-30T16:30:05Z <p>Try:</p> <pre><code>&lt;asp:ScriptManager ID="ScriptManager1" runat="server"&gt; &lt;Scripts&gt; &lt;asp:ScriptReference Path="~/jquery.js" /&gt; &lt;/Scripts&gt; &lt;/asp:ScriptManager&gt; </code></pre> <p><strong>EDIT:</strong> </p> <p>If you REALLY need this in your <code>&lt;head&gt;</code> section, you could do something like:</p> <pre><code>&lt;script type="text/javascript" src="&lt;%= Page.ResolveClientUrl("~/jquery.js") %&gt;"&gt;&lt;/script&gt; </code></pre> http://stackoverflow.com/questions/697660/asp-net-master-page-and-file-path-issues/697679#697679 0 Answer by XOR for ASP.Net Master Page and File path issues XOR 2009-03-30T15:24:20Z 2009-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#697692 0 Answer by Keltex for ASP.Net Master Page and File path issues Keltex 2009-03-30T15:26:42Z 2009-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>&lt;script runat="server" type="text/javascript" src='&lt;%= Page.ResolveUrl("~/jquery.js") %&gt;'&gt;&lt;/script&gt; </code></pre> http://stackoverflow.com/questions/697660/asp-net-master-page-and-file-path-issues/697746#697746 0 Answer by Hrvoje for ASP.Net Master Page and File path issues Hrvoje 2009-03-30T15:40:06Z 2009-03-30T15:40:06Z <p>You can also use &lt;base> HTML tag: </p> <pre><code>&lt;base href="http://www.domain.com"&gt;&lt;/base&gt; </code></pre> <p>and then all the links in header section are relative to base address: </p> <pre><code>&lt;script type="text/javascript" src="scripts/jquery.js"&gt;&lt;/script&gt; </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#1357346 0 Answer by Vincent D'Souza for ASP.Net Master Page and File path issues Vincent D'Souza 2009-08-31T12:58:31Z 2009-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#1357371 0 Answer by KOTJMF for ASP.Net Master Page and File path issues KOTJMF 2009-08-31T13:04:56Z 2009-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>&lt;head runat="server"&gt; &lt;script src="~/jquery.js" &gt;&lt;/script&gt; &lt;/head&gt; </code></pre>