Apologies for the incredible newbish question, but I just wanted to hear some authorities on when and where you should use a LITERAL
control over a LABEL
.
As I understand it, the difference is this: A LABEL
can be styled via the <SPAN>
tags that are added.
I personally find the addition of <SPAN>
tags in my HTML to be very annoying and never actually apply styles through ASP, and so LITERAL
s seem to be what should be used most of the time... but I'm concerned there's other considerations or benefits to using a LABEL over it that I'm unaware of.
Is it 100% completely fine to replace any LABEL
s with LITERAL
s, provided we're not applying styles to them? Are there NO other considerations?
Thanks for any advice.