ASP.NET master pages order of adding scripts - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T11:01:01Z http://stackoverflow.com/feeds/question/587880 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/587880/asp-net-master-pages-order-of-adding-scripts 1 ASP.NET master pages order of adding scripts rbobby 2009-02-25T21:15:40Z 2009-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#587895 1 Answer by Crossbrowser for ASP.NET master pages order of adding scripts Crossbrowser 2009-02-25T21:19:08Z 2009-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#588191 1 Answer by ashish.s for ASP.NET master pages order of adding scripts ashish.s 2009-02-25T22:21:27Z 2009-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>