How to Include Multiple Javascript Files in .NET (Like they do in rails) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T19:40:08Z http://stackoverflow.com/feeds/question/300327 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/300327/how-to-include-multiple-javascript-files-in-net-like-they-do-in-rails 5 How to Include Multiple Javascript Files in .NET (Like they do in rails) Kyle West 2008-11-18T22:12:07Z 2009-05-12T08:15:25Z <p>I'm jealous of the rails guys. They can do this:</p> <pre><code>&lt;%= javascript_include_tag "all_min" %&gt; </code></pre> <p>... and I'm stuck doing this:</p> <pre><code>&lt;script src="/public/javascript/jquery/jquery.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script src="/public/javascript/jquery/jquery.tablesorter.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script src="/public/javascript/jquery/jquery.tablehover.pack.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script src="/public/javascript/jquery/jquery.validate.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script src="/public/javascript/jquery/jquery.form.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script src="/public/javascript/jquery/application.js" type="text/javascript"&gt;&lt;/script&gt; </code></pre> <p>Are there any libraries to compress, gzip and combine multiple js files? How about CSS files?</p> http://stackoverflow.com/questions/300327/how-to-include-multiple-javascript-files-in-net-like-they-do-in-rails/300352#300352 1 Answer by cxfx for How to Include Multiple Javascript Files in .NET (Like they do in rails) cxfx 2008-11-18T22:19:40Z 2008-11-18T22:19:40Z <p>You can do this using an HTTP handler. Check out this blog post from Mads Kristensen:</p> <p><a href="http://blog.madskristensen.dk/post/Combine-multiple-stylesheets-at-runtime.aspx" rel="nofollow">Combine multiple stylesheets at runtime</a></p> http://stackoverflow.com/questions/300327/how-to-include-multiple-javascript-files-in-net-like-they-do-in-rails/300355#300355 5 Answer by seanb for How to Include Multiple Javascript Files in .NET (Like they do in rails) seanb 2008-11-18T22:20:22Z 2008-11-18T22:20:22Z <p>Also have a look at this article on codeproject:<br /> <a href="http://www.codeproject.com/KB/aspnet/HttpCombine.aspx" rel="nofollow">http://www.codeproject.com/KB/aspnet/HttpCombine.aspx</a></p> http://stackoverflow.com/questions/300327/how-to-include-multiple-javascript-files-in-net-like-they-do-in-rails/300371#300371 7 Answer by bdukes for How to Include Multiple Javascript Files in .NET (Like they do in rails) bdukes 2008-11-18T22:25:58Z 2008-11-18T22:25:58Z <p>You can use a <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.scriptmanager.aspx" rel="nofollow">ScriptManager</a>/<a href="http://msdn.microsoft.com/en-us/library/system.web.ui.scriptmanagerproxy.aspx" rel="nofollow">ScriptManagerProxy</a> control and define the scripts in the <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.scriptmanager.compositescript.aspx" rel="nofollow">CompositeScript</a> section/property. See <a href="http://msdn.microsoft.com/en-us/library/cc488552.aspx" rel="nofollow">MSDN reference</a>.</p> <pre><code>&lt;asp:ScriptManager runat="server"&gt; &lt;CompositeScript&gt; &lt;Scripts&gt; &lt;asp:ScriptReference Path="~/public/javascript/jquery/jquery.js" /&gt; &lt;asp:ScriptReference Path="~/public/javascript/jquery/jquery.tablesorter.js" /&gt; &lt;asp:ScriptReference Path="~/public/javascript/jquery/jquery.tablehover.pack.js" /&gt; &lt;asp:ScriptReference Path="~/public/javascript/jquery/jquery.validate.js" /&gt; &lt;asp:ScriptReference Path="~/public/javascript/jquery/jquery.form.js" /&gt; &lt;asp:ScriptReference Path="~/public/javascript/jquery/application.js" /&gt; &lt;/Scripts&gt; &lt;/CompositeScript&gt; &lt;/asp:ScriptManager&gt; </code></pre> <p>It doesn't necessarily clean up the markup any, but it does zip them together.</p> http://stackoverflow.com/questions/300327/how-to-include-multiple-javascript-files-in-net-like-they-do-in-rails/300379#300379 2 Answer by Joel Coehoorn for How to Include Multiple Javascript Files in .NET (Like they do in rails) Joel Coehoorn 2008-11-18T22:31:43Z 2008-11-19T18:09:40Z <pre><code>&lt;%= javascript_include_tag "all_min" %&gt; </code></pre> <p>That really has all the semantics of a classic asp function call, even if it's really ruby. In fact, not knowing any ruby I can still be pretty confident with the guess that this <em>is</em> just a function and "all_min" refers to a folder name that's being passed in as an argument. </p> <p>Since the <code>&lt;%= %&gt;</code> bee-stings are just a short-cut for <code>Response.Write</code> in classic ASP, we can conclude that you ought to be able to build your own function that does essentially the same thing and returns a string with the relevant includes.</p> http://stackoverflow.com/questions/300327/how-to-include-multiple-javascript-files-in-net-like-they-do-in-rails/851700#851700 0 Answer by diadiora for How to Include Multiple Javascript Files in .NET (Like they do in rails) diadiora 2009-05-12T08:15:25Z 2009-05-12T08:15:25Z <p>ScriptManager is under BSD licenece and this I dislike :(. You may see a very good alternative how this is implemented in KiGG's approach:<a href="http://www.codeplex.com/Kigg" rel="nofollow">KiGG</a></p> <p>The idea behind is that the control allows you to join the files js from web config by separating them into categories(you enlist their names ) pretty simple yaeh. good luck.</p>