asp:label: border, font and background color : Label « Asp Control « ASP.Net

ASP.Net
1. ADO.net Database
2. Asp Control
3. Collections
4. Components
5. Data Binding
6. Development
7. HTML Control
8. Mobile Control
9. Page
10. Request
11. Response
12. Server
13. Session Cookie
14. User Control and Master Page
15. Validation by Control
16. Validation by Function
17. XML
Microsoft Office Word 2007 Tutorial
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
ASP.Net » Asp Control » Label 
asp:label: border, font and background color

<%@ Page Language=VB Debug=true %>
<script runat=server>
Sub Page_Load(ByVal Sender as Object, ByVal E as EventArgs)

End Sub
</SCRIPT>
<HTML>
<HEAD>
<TITLE>Creating a Basic Label Control</TITLE>
</HEAD>
<form runat="server">
<asp:label 
    id="lblTitle" 
    backcolor="LightGreen"
    borderwidth="7px"
    borderstyle=6
    width="90%"
    font-size="20pt"
    font-name="Lucida Console"
    text="<CENTER>Welcome to<BR>Our Site</CENTER>"
    runat="server"
/>
<BR><BR>
<asp:label 
    id="lblMessage1"
    backcolor="LightYellow"
    font-name="Comic Sans MS"
    font-size="12pt"
    font-italic="True"
    tooltip="Mouse hovering text."
    text="Welcome to our site."
    runat="server"
/>
<BR><BR>
<asp:label 
    id="lblMessage2"
    font-name="Comic Sans MS"
    font-size="12pt"
    font-overline="True"
    text="A message with a line above it."
    runat="server"
/>
<BR><BR>
<asp:label 
    id="lblMessage3"
    font-name="Comic Sans MS"
    font-size="12pt"
    font-strikeout="True"
    text="A message with a line drawn through it."
    runat="server"
/>
</form>
</BODY>
</HTML>
           
       
Related examples in the same category
1. asp:Label background color (VB.net)
2. Set Label style (VB.net)
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#)
w__w___w__.___j__av__a_2_s___.__com__ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.