Tag: ASP.NET

  • Minify inline JavaScript in ASP.NET MVC with WebGrease

    ASP.NET 4.5 comes with great new feature to make web faster – JavaScript bundling and minification. It allows to bundle multiple js file into one and minfiy them. This works great for external JavaScript files but what about inline scripts? There is library BundleMinifyInlineJsCss to do this but it has two downsides: It has to parse…