.NET Framework Class Library
BaseValidator..::.SetFocusOnError Property

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)
Syntax

Visual Basic (Declaration)
<ThemeableAttribute(False)> _
Public Property SetFocusOnError As Boolean
Visual Basic (Usage)
Dim instance As BaseValidator
Dim value As Boolean

value = instance.SetFocusOnError

instance.SetFocusOnError = value
C#
[ThemeableAttribute(false)]
public bool SetFocusOnError { get; set; }
Visual C++
[ThemeableAttribute(false)]
public:
property bool SetFocusOnError {
    bool get ();
    void set (bool value);
}
JScript
public function get SetFocusOnError () : boolean
public function set SetFocusOnError (value : boolean)
ASP.NET
<asp:BaseValidator SetFocusOnError="True|False" />

Property Value

Type: System..::.Boolean
true to set focus on the control specified by ControlToValidate when validation fails; otherwise, false. The default is false.
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 Overview.

Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5, 3.0, 2.0
See Also

Reference

Tags :


Page view tracker