Label's color : Label « Asp Control « ASP.Net






Label's color


<%@ Page Language="vb" %>
<html>
   <head>
      <title>Init event example</title>
      <script runat="server">
         Dim TheColor As System.Drawing.Color
         Sub Page_Init()
            TheColor = System.Drawing.Color.Red
         End Sub
         Sub Page_Load()
            Message.ForeColor = TheColor
            Message.Text = "The color of this text was set in Page_Init."
            TheColor = System.Drawing.Color.Blue
            Message2.ForeColor = TheColor
            Message2.Text = "The color of this text was set in Page_Load."
         End Sub
      </script>
   </head>
<body>
   <asp:label id="Message" runat="server"/>
   <br/>
   <asp:label id="Message2" runat="server"/>
</body>
</html>

 








Related examples in the same category

1.asp:Label background color (VB.net)
2.Set Label style (VB.net)
3.asp:label: border, font and background color
4.BorderWidth, BorderColor, Font-Size, Font-Name, ForeColor, BackColor , ToolTip, Visible for asp:Label (VB.net)
5.Do a simple calculation and set value to asp:Label (VB.net)
6.Set static asp:Label value
7.Set asp:Label text (VB.net)
8.Set color and font for an asp:Label (VB.net)
9.asp:Button action to change the asp:Label and generate random number (VB.net)
10.Your First Page: display a Text runat Server (VB.net)
11.Change Label to be visible (C#)
12.Display all page event in asp label (C#)
13.Change asp label text in asp button action (C#)
14.Assign current time to asp label (C#)
15.Define function to change Label Font to Italic (C#)
16.Set Label background color (C#)
17.Boolean value toggle: label Visible (C#)
18.Set Asp Label Text during page load (C#)
19.Asp server Label: display server time (C#)