BaseValidator.Text Property
.NET Framework 3.0
Gets or sets the text displayed in the validation control when validation fails.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public: virtual property String^ Text { String^ get () override; void set (String^ value) override; }
/** @property */ public String get_Text () /** @property */ public void set_Text (String value)
public override function get Text () : String public override function set Text (value : String)
Not applicable.
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.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. |
| Topic | Location |
|---|---|
| Walkthrough: Validating User Input in a Web Forms Page | Building ASP .NET Web Applications in Visual Studio |
Community Additions
ADD
Show:
Note: