PasswordRecovery.TextBoxStyle Property

Gets a reference to a collection of style properties that define the appearance of text boxes in the PasswordRecovery control.

Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)

public:
property Style^ TextBoxStyle {
	Style^ get ();
}
/** @property */
public Style get_TextBoxStyle ()

public function get TextBoxStyle () : Style

Not applicable.

Property Value

A reference to a Style that contains properties that define the appearance of text boxes in the PasswordRecovery control.

The TextBoxStyle property defines the appearance of text boxes in the PasswordRecovery control. This property is read-only; however, you can set the properties of the Style object it returns. You can set these properties declaratively in the form Property-Subproperty, where Subproperty represents a property of the Style class (for example, TextBoxStyle-ForeColor). You can also set the properties programmatically in the form Property.Subproperty (for example, TextBoxStyle.ForeColor).

Common settings include custom background color, text color, and font properties.

The style settings for the TextBoxStyle property are merged with the style settings for the PasswordRecovery control. Any settings made in the TextBoxStyle property override the corresponding settings in properties of the PasswordRecovery control.

The following PasswordRecovery properties are overridden by TextBoxStyle settings:

When you use templates to define the appearance of the PasswordRecovery control, the TextBoxStyle property has no effect.

The following code example changes the appearance of the User Name text box if the user makes a mistake entering his or her user name.

Security noteSecurity Note:

This example contains a text box that accepts user input, which is a potential security threat. By default, ASP.NET Web pages validate that user input does not include script or HTML elements. For more information, see Script Exploits Overview (Visual Studio).

No code example is currently available or this language may not be supported.

Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0

Community Additions

ADD
Show: