As an extension to this question here Linking JavaScript Libraries in User Controls I was after some examples of how people are concatenating and minifying JavaScript on the
Rejuicer is a great new minifier for ASP.NET that's getting a lot of buzz: http://rejuice.me
It is configured as a HTTP module & performs minification at run-time (once) and caches the output.
It:
The configuration (done on ApplicationStart in global.asax.cs) is as simple as:
OnRequest.ForJs("~/Combined.js")
.Compact
.FilesIn("~/Scripts/")
.Matching("*.js")
.Cache
.Configure();