ASP.NET master pages order of adding scripts - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T11:01:01Zhttp://stackoverflow.com/feeds/question/587880http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/587880/asp-net-master-pages-order-of-adding-scripts1ASP.NET master pages order of adding scriptsrbobby2009-02-25T21:15:40Z2009-02-25T22:21:27Z
<p>I have a master page that adds the jquery library via a registerclientscriptinclude:</p>
<pre><code>Page.ClientScript.RegisterClientScriptInclude(this.GetType(),
"JQuery",
Page.ResolveUrl("~/Scripts/jquery-1.2.6.min.js"));
</code></pre>
<p>In a page that uses that master page I want to include a script that depends on jquery:</p>
<pre><code>Page.ClientScript.RegisterClientScriptInclude(this.GetType(),
"jqplugin1",
Page.ResolveUrl("~/Scripts/jquery.plugin1.compressed.js"));
</code></pre>
<p>This causes a problem because the page's client scripts are written first and then the master pages client scripts (causing the plugin to complain that "jquery" is undefined).</p>
<p>Is there anyway to control the ordering of client script includes? Alternatively any recommendation on how best to control this (temporarily the master page is just including everything... but that's not going to work long term).</p>
http://stackoverflow.com/questions/587880/asp-net-master-pages-order-of-adding-scripts/587895#5878951Answer by Crossbrowser for ASP.NET master pages order of adding scriptsCrossbrowser2009-02-25T21:19:08Z2009-02-25T21:19:08Z<p>You could re-include the jQuery library in the page, if it's already there it will simply override it, if not it will be added.</p>
http://stackoverflow.com/questions/587880/asp-net-master-pages-order-of-adding-scripts/588191#5881911Answer by ashish.s for ASP.NET master pages order of adding scriptsashish.s2009-02-25T22:21:27Z2009-02-25T22:21:27Z<p>since master page is like a control embedded in a page, you can add these scripts towards the end of the page cycle, the control would fire first and then page, so your page would be fine.</p>