Back to Devexpress

ASPxPageControl.Callback Event

aspnet-devexpress-dot-web-dot-aspxpagecontrol-7597fd3d.md

latest2.3 KB
Original Source

ASPxPageControl.Callback Event

Fires when you call the PerformCallback(parameter) method and initiate a round trip to the server.

Namespace : DevExpress.Web

Assembly : DevExpress.Web.v25.2.dll

NuGet Package : DevExpress.Web

Declaration

csharp
public event CallbackEventHandlerBase Callback
vb
Public Event Callback As CallbackEventHandlerBase

Event Data

The Callback event's data class is CallbackEventArgsBase. The following properties provide information specific to this event:

PropertyDescription
ParameterGets a string that contains specific information (if any) passed from the client side.

Remarks

Call the PerformCallback(parameter) method to send a callback to the server. You can pass information from the client to the server as the method’s parameter. On the server, the PerformCallback method raises the Callback event and passes the specified parameter to the event argument’s Parameter property.

You can use the PerformCallback method to update only the active tab content. Changes to the contents of all inactive tabs are ignored.

The ASPxPageControl raises the BeginCallback and EndCallback events before and after each callback.

For move information about callbacks in DevExpress controls, see the following section: Callbacks

See Also

Page Control and Tab Control

ASPxPageControl Class

ASPxPageControl Members

DevExpress.Web Namespace