BaseValidator.SetFocusOnError 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 a value that indicates whether focus is set to the control specified by the ControlToValidate property when validation fails.
public:
property bool SetFocusOnError { bool get(); void set(bool value); };
[System.Web.UI.Themeable(false)]
public bool SetFocusOnError { get; set; }
[<System.Web.UI.Themeable(false)>]
member this.SetFocusOnError : bool with get, set
Public Property SetFocusOnError As Boolean
Property Value
true
to set focus on the control specified by ControlToValidate when validation fails; otherwise, false
. The default is false
.
- Attributes
Remarks
Use the SetFocusOnError property to specify whether focus is automatically set to the control specified by the ControlToValidate property when this validation control fails. This allows the user to quickly update the appropriate control.
If multiple validation controls fail and this property is set to true
, the control specified in the ControlToValidate property for the first validation control receives focus.
This property cannot be set by themes or style sheet themes. For more information, see ThemeableAttribute and ASP.NET Themes and Skins.