Enabling AJAX
To enable AJAX, set the EnableCallback property to True. This can be done either at design time or programmatically.
Set the EnableCallback property at design time:
Locate the EnableCallback property in the Properties window and set it to True:
Set the EnableCallback property programmatically:
Add the following code to the Page_Load event to set the EnableCallback property to True:
Me.C1WebReport1.EnableCallback = True
• C#
this.c1WebReport1.EnableCallback = true;
|