Is there any native compression (for javascript/css files) available in ASP.NET?
|
3
|
|||||
|
|
|
In the appendix of Professional ASP.NET 3.5 Scott Hanselman talks about Packer for .NET. This will integrate with MSBuild and pack javascript files for production deployments etc. |
||||||||
|
|
|
There is Gzip/Deflate compression support in IIS compatible with all modern browsers except IE6. For IIS 7 check this page: http://www.iis.net/ConfigReference/system.webServer/httpCompression |
||
|
|
|
|
You could use Packer. This utlity supports JavaScript compression and /or "minifying", and CSS "minifying". It's available as a command line utility or also as an MSBuild task. This way you can integrate it into your build process / Visual Studio project. |
||
|
|
|
Further to other answers and comments, you can use Yahoo!'s YUI Compressor and make it an MSBuild Task to integration it into your build and deployment process. |
||
|
