How to Include Multiple Javascript Files in .NET (Like they do in rails) - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T19:40:08Zhttp://stackoverflow.com/feeds/question/300327http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/300327/how-to-include-multiple-javascript-files-in-net-like-they-do-in-rails5How to Include Multiple Javascript Files in .NET (Like they do in rails)Kyle West2008-11-18T22:12:07Z2009-05-12T08:15:25Z
<p>I'm jealous of the rails guys. They can do this:</p>
<pre><code><%= javascript_include_tag "all_min" %>
</code></pre>
<p>... and I'm stuck doing this:</p>
<pre><code><script src="/public/javascript/jquery/jquery.js" type="text/javascript"></script>
<script src="/public/javascript/jquery/jquery.tablesorter.js" type="text/javascript"></script>
<script src="/public/javascript/jquery/jquery.tablehover.pack.js" type="text/javascript"></script>
<script src="/public/javascript/jquery/jquery.validate.js" type="text/javascript"></script>
<script src="/public/javascript/jquery/jquery.form.js" type="text/javascript"></script>
<script src="/public/javascript/jquery/application.js" type="text/javascript"></script>
</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#3003521Answer by cxfx for How to Include Multiple Javascript Files in .NET (Like they do in rails)cxfx2008-11-18T22:19:40Z2008-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#3003555Answer by seanb for How to Include Multiple Javascript Files in .NET (Like they do in rails)seanb2008-11-18T22:20:22Z2008-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#3003717Answer by bdukes for How to Include Multiple Javascript Files in .NET (Like they do in rails)bdukes2008-11-18T22:25:58Z2008-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><asp:ScriptManager runat="server">
<CompositeScript>
<Scripts>
<asp:ScriptReference Path="~/public/javascript/jquery/jquery.js" />
<asp:ScriptReference Path="~/public/javascript/jquery/jquery.tablesorter.js" />
<asp:ScriptReference Path="~/public/javascript/jquery/jquery.tablehover.pack.js" />
<asp:ScriptReference Path="~/public/javascript/jquery/jquery.validate.js" />
<asp:ScriptReference Path="~/public/javascript/jquery/jquery.form.js" />
<asp:ScriptReference Path="~/public/javascript/jquery/application.js" />
</Scripts>
</CompositeScript>
</asp:ScriptManager>
</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#3003792Answer by Joel Coehoorn for How to Include Multiple Javascript Files in .NET (Like they do in rails)Joel Coehoorn2008-11-18T22:31:43Z2008-11-19T18:09:40Z<pre><code><%= javascript_include_tag "all_min" %>
</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><%= %></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#8517000Answer by diadiora for How to Include Multiple Javascript Files in .NET (Like they do in rails)diadiora2009-05-12T08:15:25Z2009-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>