views:

49

answers:

3

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
+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
A: 

Removing unused html from your file will make it smaller, decreasing the file size that needs to get transmitted over the wire.

eidylon