How to Include Multiple Javascript Files in .NET (Like they do in rails) -
i'm jealous of rails guys. can this:
<%= javascript_include_tag "all_min" %>
... , i'm stuck doing this:
<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>
are there libraries compress, gzip , combine multiple js files? how css files?
also have @ article on codeproject:
http://www.codeproject.com/kb/aspnet/httpcombine.aspx
Comments
Post a Comment