RadAjax for ASP.NET AJAX

RadControls for ASP.NET AJAX

When your application is running in Medium trust and you want to use RadAjax on your pages, you need to use one of the following approaches in order to make RadAjax work properly:

  1. Inherit your page from RadAjaxPage as shown below:
  2. Set the RestoreOriginalDelegate property of the RadAjax control to false:
    CopyASPX
    <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" RestoreOriginalRenderDelegate="false">
    </telerik:RadAjaxManager>
    <telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" RestoreOriginalRenderDelegate="false">
    </telerik:RadAjaxPanel>
  3. Implement the IRadAjaxPage interface:

Note that in all cases when the application is running in Medium trust you could have only one RadAjax control in the whole page hierarchy. Therefore in complex Master/Content Page applications we suggest using single RadAjaxManager on the Master page which could handle all available Ajax scenarios. The mentioned limitation is due to the fact that in Medium Trust the reflection permissions are not granted.