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#" %>
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    void Page_Load()
    {
        lblTime.Text = DateTime.Now.ToString("T");
    }



    Show Label


    
    

            id="lblTime"
        Runat="server" />