WebControl.ForeColor Property
Assembly: System.Web (in system.web.dll)
Use the ForeColor property to specify the foreground color of the Web server control. The foreground color is usually the color of the text. This property will render on browsers earlier than Microsoft Internet Explorer version 4 for all controls, except the Image, AdRotator, HyperLink and LinkButton.
Note |
|---|
| On browsers earlier than Microsoft Internet Explorer version 4, this property is rendered as <font> tags. |
The following example illustrates how to set the ForeColor property of the Table control, inherited from the WebControl base class.
<%@ Page Language="C#" AutoEventWireup="True" %> <html> <body> <h3>ForeColor Property of a Web Control</h3> <form runat=server> <asp:Table id="Table1" runat="server" CellPadding=10 GridLines="Both" ForeColor="Blue" > <asp:TableRow> <asp:TableCell> Row 0, Col 0 </asp:TableCell> <asp:TableCell> Row 0, Col 1 </asp:TableCell> </asp:TableRow> <asp:TableRow> <asp:TableCell> Row 1, Col 0 </asp:TableCell> <asp:TableCell> Row 1, Col 1 </asp:TableCell> </asp:TableRow> </asp:Table> </form> </body> </html>
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Note