Set Label style (VB.net) : Label « Asp Control « ASP.Net






Set Label style (VB.net)

<%@ Page Language="vb" %>
<html>
<head>
   <title>Control Properties Example</title>
   <script runat="server">
      Sub Page_Load()
         Label2.Style("background-color") = "silver"
      End Sub
   </script>
   <style>
       .Hello   
       { 
           font: 14pt arial; 
           color:blue;
       }
   </style>
</head>
<body>
   <h1>Control Properties Example</h1>
   <form runat="server">
      <asp:table id="MyTable" border="1" cellpadding="5" cellspacing="0" runat="server">
         <asp:tablerow runat="server">
            <asp:tablecell runat="server">
               HtmlInputText Control:
            </asp:tablecell>
            <asp:tablecell runat="server">
               <input id="Text1" type="text" 
                  style="font: 12pt arial; background-color:silver; color:red;" 
                  runat="server"/>
            </asp:tablecell>
         </asp:tablerow>
         <asp:tablerow runat="server">
            <asp:tablecell runat="server">
               Label with Style:
            </asp:tablecell>
            <asp:tablecell runat="server">
               <asp:label id="Label2" cssclass="Hello" runat="server">
                  Hello, World!
               </asp:label>
            </asp:tablecell>
         </asp:tablerow>
      </asp:table>
   </form>
</body>
</html>

           
       








Related examples in the same category

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