vote up 3 vote down star
3

Is there any native compression (for javascript/css files) available in ASP.NET?

flag

73% accept rate
what kind of compression: minification/packing or gzip/deflate? – Mauricio Scheffer May 19 at 14:04
not sure of the difference between minification/packing and gzip/deflate. what i'm looking for is some native way for asp.net to compress script and css files so the actual files that are requested from server are smaller. – dev.e.loper May 19 at 14:15

4 Answers

vote up 1 vote down check

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.

link|flag
It seems we posted the same answer at the same time :-) – kay.herzam May 19 at 14:14
Looks like Packer is the closest thing that comes to native compression in .NET. – dev.e.loper May 19 at 14:26
On Packer page there is a section "Packer versus JSMin" which says that JSMin can be more efficient than Packer. On Yahoo Compressor page (developer.yahoo.com/yui/compressor) it states that Yahoo compressor is more efficient than JSMin, so it looks like Yahoo compressor might be a good candidate even though its not native to .NET environment. – dev.e.loper May 19 at 14:29
From Packer's website: "While Packer can created a much smaller output file it can be more problematic with packing JavaScript that does not conform to a strict syntax"... Sounds scary, like it might mangle my javascript? – Frank Schwieterman Aug 11 at 21:12
vote up 1 vote down

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

link|flag
vote up 1 vote down

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.

link|flag
Great minds think alike ;-) – RedWolves May 19 at 14:25
vote up 1 vote down

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.

link|flag
helpful. thank you. – dev.e.loper May 20 at 16:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.