Add style to asp:Label : Label « ASP.net Controls « ASP.NET Tutorial






<%@ Page Language="C#"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Untitled Page</title>
    <style rel="stylesheet" type="text/css">
body
{
  font-family: Verdana, Arial, Sans-Serif;
  font-size: small;
}

.heading1
{
  font-weight: bold;
  font-size: large;
  color: lime;
}
.heading2
{
  font-weight: bold;
  font-size: medium;
  font-style: italic;
  color: #C0BA72;
}
.blockText
{
  padding: 10px;
  background-color: #FFFFD9;
  border-style: solid;
  border-width: thin;
}
    
    
    </style>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:Label CssClass="heading1" ID="Label1" runat="server" Text="This Label Uses heading1"></asp:Label>
        <br />
        This is sample unformatted text.<br />
        &nbsp;<br />
        <asp:Label CssClass="heading2" ID="Label2" runat="server" Text="This Label Uses heading2"></asp:Label>
        <br />
        Here's more unformatted text.<br />
        <br />
        &nbsp;<div class="blockText" id="DIV1" runat="server" >
            This control uses the blockText style. This control uses the blockText style. This
            control uses the blockText style. This control uses the blockText style.
        </div>
    </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