What are the ways by which we can reduce the size of the HTML Response sent by an asp.net application?

I am using Controls which are not owned by me and it produces output with white spaces. I am interested in Minifying the entire HTML output of the page just like how google does (View source www.google.com) to improve the timing.

Is there any Utility classes available for ASP.NET which can do this stuff for me?

link|improve this question

feedback

2 Answers

up vote 13 down vote accepted

Try this: http://madskristensen.net/post/A-whitespace-removal-HTTP-module-for-ASPNET-20.aspx

link|improve this answer
Broken url, project seems no longer valid. – Django Reinhardt Jun 23 '10 at 11:53
Mads has moved his blog. Url updated. – gius Jun 24 '10 at 8:38
feedback

There is no need to do it on run-time. Because it can be done on compile-time.

Details: http://omari-o.blogspot.com/2009/09/aspnet-white-space-cleaning-with-no.html

link|improve this answer
1  
Thanks - Thats a great article. +1 – Ramesh Jan 27 '10 at 14:15
Looks promising, thanks! – Django Reinhardt Jun 23 '10 at 11:54
Great link. This was my solution for stackoverflow.com/questions/7121371/… – Mark Robinson Aug 19 '11 at 15:22
How did you apply this in the project? Sorry for my ignorance, but I can't make it work. – user72213 Apr 13 at 9:06
@ryan What errors do you get? Have you specified pageParserFilterType in web.config? – thorn Apr 13 at 13:56
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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