top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Bundling & Minification features in ASP.NET MVC 4

+2 votes
260 views

What are Bundling & Minification features in ASP.NET MVC 4?

posted Sep 22, 2014 by Khusboo

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+2 votes
 
Best answer

If there are multiple css and javascript files in our application then you can use the concept of bundling and minification of asp.net mvc by that you get following advantages.
1.Loading of a page becomes faster as all javascript files are bundled .
2.All Javascript files will be minified

In order to achieve this you need to create a bundle this can be done in bundle.config file.

answer Sep 25, 2014 by Naveen Kumar Mukka
...