Import properties of The Label control : Label « ASP.net Controls « ASP.NET Tutorial






BackColor:      change the background color of the label.
BorderColor:    set the color of a border rendered around the label.
BorderStyle:    display a border around the label. Possible values are NotSet, None, Dotted, Dashed, Solid, Double, Groove, Ridge, Inset, and Outset.
BorderWidth:    set the size of a border rendered around the label.
CssClass:       associate a Cascading Style Sheet class with the label.
Font:           set the label's font properties.
ForeColor:      set the color of the content rendered by the label.
Style:          assign style attributes to the label.
ToolTip:        set a label's title attribute. (In Microsoft Internet Explorer, the title attribute is displayed as a floating tooltip.)
      


<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">

    void Page_Load()
    {
        lblTime.Text = DateTime.Now.ToString("T");
    }
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
    <title>Show Label</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>

    <asp:Label
        id="lblTime"
        Runat="server" />
    </div>
    </form>
</body>
</html>








3.1.Label
3.1.1.Import properties of The Label control
3.1.2.Use asp:Label to display text message (VB.net)
3.1.3.Change asp:Label Text in page load event listener (VB.net)
3.1.4.Add style to asp:Label
3.1.5.Label font
3.1.6.Set Label through code (VB)
3.1.7.Set text to Label (C#)
3.1.8.Format a Label with CSS
3.1.9.Label controls are used to label the two TextBox controls.
3.1.10.Using the Label server control to provide hot-key functionality
3.1.11.Label hot key
3.1.12.Highlight with regular expression
3.1.13.Use of AssociatedControlID property on labels to bind a particular label to an input control