The Label control provides you with a way to programmatically set text in an ASP.NET web page. You typically use the Label control when you want to change text in the page at run time, such as in response to a button click.
To add a Label control to a page
Drag the Label control from the Toolbox panel to your page.
Set properties for the control in the Tag Properties panel.
Common Label Properties
For a full description of all Label control properties, see Label Properties in the MSDN library.
The Label control provides one of several ways to display text in an ASP.NET web page.
Text display options
There are several choices to display text in a page:
HTML If you want to display static text, you can present it using HTML; you do not need a Label control. Use a Label control only if you need to change the contents or other characteristics of the text in server code.
Label control You can set the text of the Label control at design time or at run time in a program. You can also bind the Label control's Text property to a data source to display database information on a page.
Literal control Like the Label control, the Literal control allows you to programmatically set text to be displayed in the page. However, the Literal control does not support style properties.
Labels as Control Captions
You can use the Label control to act as an active caption in front of a TextBox control or other control. Users can then press an access key to move to the control for which the Label control is the caption. For details, see How to: Use Label Web Server Controls as Captions in the MSDN library.