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

ASPxButton Class

A button control.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

public class ASPxButton :
    ASPxWebControl,
    IButtonControl,
    IRequiresLoadPostDataControl,
    IAssociatedControlID

Remarks

The Button offers extended functionality not available with the standard ASP.NET button. It ships with an enhanced client API and supports the DevExpress appearance customization engine.

ASPxButton_control.png

Create a Button

Design Time

The ASPxButton control is available on the DX.19.2: Common Controls toolbox tab in the Microsoft Visual Studio IDE.

UploadControl_Toolbox.png

Drag the control onto a form and customize control settings, or paste the control markup in the page’s source code.

<dx:ASPxButton ID="MyButton" runat="server" Text="Show Alert" AutoPostBack="False" >
     <ClientSideEvents Click="function(s, e) {alert('Hello, world');}" />
</dx:ASPxButton>

Run Time

using DevExpress.Web;
...
protected void Page_Load(object sender, EventArgs e) {
     ASPxButton button = new ASPxButton();
     button.ID = "MyButton";
     button.Text = "Show Alert";
     button.AutoPostBack = false;
     button.ClientSideEvents.Click = "function(s, e) {alert('Hello, world');}";
     // Add the created control to the page
     Page.Form.Controls.Add(button);
}

Client-Side API

The ASPxButton‘s client-side API is implemented with JavaScript language and exposed by the ASPxClientButton object.

Availability

Available if the EnableClientSideAPI property is set to true, or the ClientInstanceName property is defined, or any client event is handled.

Class name

ASPxClientButton

Access name

ClientInstanceName

Events

ASPxButton.ClientSideEvents

Features

Render Modes

Use the RenderMode property to specify how the ASPxButton control is rendered on the page. The ButtonRenderMode enumeration lists the property’s available values.

Set the Native property to true to render the ASPxButton control as a native input element.

<dx:ASPxButton ID="btnNewItem" runat="server" RenderMode="Link" Text="New Item" AutoPostBack="false"  
    ImagePosition="Right" Image-IconID="actions_additem_16x16gray" />
<dx:ASPxButton ID="btnDelete" runat="server" RenderMode="Danger" Text="Delete" Width="164px" AutoPostBack="false" />
<dx:ASPxButton ID="btnNative" runat="server" Native="True" Text="Native" Width="164px"  AutoPostBack="false" /> 

See demo

Radio Button Mode

Use the GroupName property to create a mutually exclusive group of buttons. When the GroupName property is set, only one button in the specified group can be checked at one time. The Checked property specifies a button’s checked state. When a checked state is changed, the CheckedChanged event fires.

<dx:ASPxButton ID="ASPxButton1" runat="server" AutoPostBack="False" GroupName="G" Text="Option 1" Checked="True" />
<dx:ASPxButton ID="ASPxButton2" runat="server" AutoPostBack="False" GroupName="G" Text="Option 2" />
<dx:ASPxButton ID="ASPxButton3" runat="server" AutoPostBack="False" GroupName="G" Text="Option 3" />

See demo

Validation

When the ASPxButton control is clicked, it forces validation of all verifiable web controls on a web page on both the client side and server side. Set the AutoPostBack property to false to perform client-side validation only. Set the CausesValidation property to false to prevent any validation.

Learn more | See demo

Online Demos

Features

Appearance Customization

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ASPxButton class.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also