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>