BaseValidator.SetFocusOnError Property
.NET Framework 3.0
Gets or sets a value that indicates whether focus is set to the control specified by the ControlToValidate property when validation fails.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
[ThemeableAttribute(false)] public: property bool SetFocusOnError { bool get (); void set (bool value); }
/** @property */ public boolean get_SetFocusOnError () /** @property */ public void set_SetFocusOnError (boolean value)
public function get SetFocusOnError () : boolean public function set SetFocusOnError (value : boolean)
Not applicable.
Property Value
true to set focus on the control specified by ControlToValidate when validation fails; otherwise, false. The default is false.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 Introduction to ASP.NET Themes.
Community Additions
ADD
Show: