When using Asp.net server controls, especially formviews, I often don't use all possible modes. So I end up with a ton of template HTML that is never going to be used. This is a pain to work with when I'm in HTML Source mode. Is there any reason why I shouldn't just delete the excess HTML?
+4
A:
No. If you know that you're never going to need it, just delete it. ;)
Tor Valamo
2009-12-10 17:55:33
+3
A:
If you dont need it, delete it. If you need it in the future you can always get it from source control.
Sergio
2009-12-10 17:55:56
A:
Removing unused html from your file will make it smaller, decreasing the file size that needs to get transmitted over the wire.
eidylon
2009-12-10 19:18:38