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

ASPxButton.Click Event

Fires when the button is clicked.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

public event EventHandler Click

Event Data

The Click event's data class is EventArgs.

Remarks

Handle the Click event to perform server-side processing of button clicks.

Note

When some buttons are used in a group (their ASPxButton.GroupName properties are set to the same value) a click on a checked button doesn’t raise the Click event.

Example

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

<script runat="server">
protected void Page_Load(object sender, EventArgs e) { 
} 
protected void btnOK_Click(object sender, EventArgs e) {
    ASPxTextBox1.Text = ASPxTextBox2.Text;
}
</script>
...
<dxe:ASPxButton ID="btnOK" runat="server" AutoPostBack="False" 
Text="OK" Width="80px" OnClick="btnOK_Click">
    <ClientSideEvents Click="function(s, e) {
        popupControl.Hide();
        e.processOnServer = true; // do some processing at the server side
     }" />
</dxe:ASPxButton>
...

The following code snippets (auto-collected from DevExpress Examples) contain references to the Click event.

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.

Implements

See Also