This is continuation of my previous articles. I highly recommend to read my previous article at below link,

Now in this article we will compare the performance in the application without bundling and minification and application with bundling and minification configured.

For this you have to download source code from here,

  1. Using JQuery Accordion Control and Tab Control in MVC
  2. Bundling And Minification In MVC - Part 2

Note: 1st source code one is without bundling and minification and 2nd one is with bundling and minification.

Now get ready with firebug and measure the performance. I have recorded the performance with the following two screenshots.

Screen Shot 1: Without Bundling and Minification application performance.

performance

Screen Shot 2: With Bundling and Minification application performance,

performance
If you compare the performance I highlighted below improvement in the application with bundling and minification:

Conclusion

Using bundling and minification there is a drastic change in performance. No. of requests to the server are minimized as data is combined in single file. Data downloaded is minimized. And Overall application load time is improved although functionality remains same.

I hope you enjoyed the series bundling and minification and definitely bundling and minification will improve your application performance.