Login.InstructionTextStyle Property
Assembly: System.Web (in system.web.dll)
'Declaration Public ReadOnly Property InstructionTextStyle As TableItemStyle 'Usage Dim instance As Login Dim value As TableItemStyle value = instance.InstructionTextStyle
/** @property */ public TableItemStyle get_InstructionTextStyle ()
public function get InstructionTextStyle () : TableItemStyle
Property Value
A reference to the TableItemStyle that contains the style settings of the Login control instruction text.The InstructionTextStyle property defines the appearance of instruction text in the Login control. This property is read-only; however, you can set the properties of the TableItemStyle object it returns. You can set these properties declaratively in the form Property-Subproperty, where Subproperty represents a property of the TableItemStyle class (for example, InstructionTextStyle-ForeColor). You can set the property programmatically in the form Property.Subproperty (for example, InstructionTextStyle.ForeColor).
Common settings include custom background color, text color, and font properties. The InstructionTextStyle property defines the appearance of the InstructionText property.
The style settings for the InstructionTextStyle property are merged with the style settings for the Login control. Any settings made in the InstructionTextStyle property override the corresponding settings in properties of the Login control.
The following Login style properties are overridden by InstructionTextStyle settings:
When you use templates to define the appearance of the Login control, the InstructionTextStyle property has no effect.
The following code example sets the instruction text and the background color for the instruction text by setting properties of the TableItemStyle object referenced by the InstructionTextStyle property.
<%@ Page Language="VB" AutoEventWireup="False"%> <html> <head> </head> <body> <form runat="server"> <asp:Login id="Login1" runat="server" InstructionText="Enter your user name and password to log in."> <InstructionTextStyle Font-Bold="True" ForeColor="#E0E0E0" BackColor="Gray"></InstructionTextStyle> </asp:Login> </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.