Skip to main content
A newer version of this page is available. .
Tab

ASPxButton.CausesValidation Property

Gets or sets a value indicating whether the button click initiates validation (client and server).

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(true)]
public virtual bool CausesValidation { get; set; }

Property Value

Type Default Description
Boolean **true**

true, if the button click performs validation; otherwise, false.

Remarks

By default, a button click forces validation of an editor group that is specified by the ASPxButton.ValidationGroup property.

Note

Set the CausesValidation property to false when you use the ASPxButton.PostBackUrl property to post back to a different page. You should explicitly check validation when posting back to a different page.

You can use the following API to specify validation settings:

Example

The complete sample project is available in the DevExpress Code Central database at E557.

...
         <dxe:ASPxButton ID="ASPxButton1" runat="server" AutoPostBack="False" 
         Text="ASPxButton" CausesValidation="False">
         </dxe:ASPxButton>
...

Implements

See Also