ListControl.CausesValidation Property

Definition

Gets or sets a value indicating whether validation is performed when a control that is derived from the ListControl class is clicked.

public:
 virtual property bool CausesValidation { bool get(); void set(bool value); };
[System.Web.UI.Themeable(false)]
public virtual bool CausesValidation { get; set; }
[<System.Web.UI.Themeable(false)>]
member this.CausesValidation : bool with get, set
Public Overridable Property CausesValidation As Boolean

Property Value

true if validation is performed when the ListControl control is clicked; otherwise, false. The default is false.

Attributes

Remarks

Use the CausesValidation property to determine whether validation is performed when a ListControl control is clicked. Page validation determines whether the input controls that are associated with a validation control on the page all pass the validation rules that are specified by the validation control.

By default, clicking a control that is derived from the ListControl class does not cause page validation. To perform page validation when the control that is derived from the ListControl class is clicked, set the CausesValidation property to true.

When the value of the CausesValidation property is set to true, you can also use the ValidationGroup property to specify the name of the validation group for which the ListControl control causes validation.

The value of this property is stored in view state.

This property cannot be set by themes or style sheet themes. For more information, see ThemeableAttribute and ASP.NET Themes and Skins.

Applies to

See also