4

Anyone knows a good way or tool to compress the HTML that is sent to the client?

I was thinking in compressing the HTML in the .aspx files in the production server only, so maybe a tool for doing this would be the right choice.

halfer
  • 19,824
  • 17
  • 99
  • 186
Bruno
  • 4,337
  • 12
  • 42
  • 55

3 Answers3

3

A better way is to enable GZIP, you can enable this in IIS

iis6 | iis7

TomHastjarjanto
  • 5,386
  • 1
  • 29
  • 41
0

An article here about ASP.NET white space cleaning with no runtime cost.

Cleaning out the unnecessary whitespace has the effect of compressing the data.

David d C e Freitas
  • 7,481
  • 4
  • 58
  • 67
0

Telerik just released a compression utility as part of their RadControls for ASP.NET AJAX suite. If you aren't a customer you can check it out using the free, non-time-bombed trial of their controls.

Check out this post and this post for details.

Kevin Babcock
  • 10,187
  • 19
  • 69
  • 89