BaseValidator.Text 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 or sets the text displayed in the validation control when validation fails.
public:
virtual property System::String ^ Text { System::String ^ get(); void set(System::String ^ value); };
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerDefaultProperty)]
public override string Text { get; set; }
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerDefaultProperty)>]
member this.Text : string with get, set
Public Overrides Property Text As String
Property Value
The text displayed in the validation control when validation fails. The default is an empty string (""), which indicates that this property is not set.
- Attributes
Remarks
Use the Text property to specify the text to display in a validation control when validation fails. You can also display a summary of all controls that fail validation in the page by using a ValidationSummary control. To specify the text to display in a ValidationSummary control, use the ErrorMessage property.
Note
If you set the ErrorMessage property without setting the Text property, the value of the ErrorMessage property is also displayed in the validation control.