CreateUserWizard.ErrorMessageStyle Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a reference to a collection of style properties that define the appearance of error messages.
public:
property System::Web::UI::WebControls::TableItemStyle ^ ErrorMessageStyle { System::Web::UI::WebControls::TableItemStyle ^ get(); };
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)]
public System.Web.UI.WebControls.TableItemStyle ErrorMessageStyle { get; }
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)>]
member this.ErrorMessageStyle : System.Web.UI.WebControls.TableItemStyle
Public ReadOnly Property ErrorMessageStyle As TableItemStyle
Property Value
A TableItemStyle containing the style properties that define the appearance of error messages on the control. The default is null.
- Attributes
Remarks
Use the ErrorMessageStyle property to change the appearance of error messages that are displayed when the membership provider fails to create a new user account. By default, the ErrorMessageStyle is set to display the following messages in red:
The ErrorMessageStyle 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, ErrorMessageStyle-ForeColor
). You can set the property programmatically in the form Property.Subproperty
(for example, ErrorMessageStyle.ForeColor
).
Common settings include custom background color, text color, and font properties. The style settings for the ErrorMessageStyle property are merged with the style settings for the CreateUserWizard control. Any settings that are applied in the ErrorMessageStyle property override the corresponding settings in the properties of the CreateUserWizard control.
The following CreateUserWizard style properties are overridden by ErrorMessageStyle settings:
However, when you use templates to define the appearance of the CreateUserWizard control, the ErrorMessageStyle property has no effect.