Top 7 Features of ASP.Net 4.5 You Must Know
ASP.Net 4.5 is a mature framework, adopted by most developers for developing websites. ASP.Net 4.5 is part of Visual Studio 2012, and offers highly scalable and flexible websites. If you want performance, then this is the platform you should prefer. Let’s see some of the amazing features shipped as part of this framework.
Bundling & Minification If you want to boost the performance of your website, then you should use the bundling and minification feature that comes with ASP.Net 4.5. This feature creates a bundle of the stylesheets and scripts and minimizes the scripts, thus reducing the load on your website. You get the System.Web.Optimization namespace to offer support in this process. In a new project, you will find the following code in the Global.asax.file protected void Application_Start() { //Some code BundleTable.Bundles.RegisterTemplateBundles(); }