The Label control allows you to display static text on the page and manipulate it programmatically.
Required properties are noted in boldface type.
<asp:Label id="Label1" runat="server" Text="label" /> or <asp:Label id="Label1" runat="server"> Text </asp:Label>
Property | Description |
---|---|
(Base control properties) | The properties defined in Base Web Control Properties. |
Text | The text to display. |
To be supplied.
See Also