Monday, January 15, 2018

How Bundling and Minification Work in an MVC Application

Bundling and Minifying in ASP.NET are two powerful features by which you can improve request load time. ASP.NET MVC provides bundling and minification of CSS and JavaScript, which reduces the number of HTTP Requests and payload size, resulting in faster and better performing ASP.NET MVC Web sites. The System.Web.Optimization namespace offers the bundling and minification techniques that exist in the Microsoft.Web.Optimization assembly. To apply bundling and minification, you have to add this DLL as a reference in your project.

More

No comments:

Post a Comment

Mocking API Responses in Azure API Management Portal

A mock API imitates a real API call by providing a realistic JSON or XML response to the requester. Mock APIs can be designed on a developer...