Google Closure Compiler vs. YUI Compressor - Comparing the Javascript Compression ToolsIn terms of Javascript Compression, the most widely used tools are: JSMIN, the DOJO Compressor, Dean Edwards’ Packer and YUI Compressor. The YUI Compressor is designed to be 100% safe and yield a higher compression ratio than the other tools listed above. That’s why most of the JavaScript Frameworks...
How To: Compress ViewState in ASP.NET 2.0 - ViewState Compression with System.IO.CompressionWe can completely disable viewstate by setting EnableViewState to false in the page directive but you need extra programming effort for you to take care of the page state. It is a good idea to disable ViewState for the controls that do not actually need it such as Literals and Labels by setting Enab...
Closure Compiler - Javascript Compiler by Google - Compress Javascript with Closure CompilerClosure Compiler is a Javascript optimizer that compiles javascript code into a compact, high performance form. The compiler does more than a standard Javascript compressor. The Closure Compiler reduces the size of your JavaScript files and makes them more efficient, helping your application to load...