If all you want to do is to put pure text in a certain place on your ASP.Net page, try NOT to use a label. Instead use a Literal Control. There is more overhead, plus a label always puts an HTML Span tag around the text. The Literal control just displays the text itself.
The post Say ‘No’ to Labels – Literally appeared first on All Things DotNet.