8 Answers, 1 is accepted

There is no problem to use the Prometheus RadAjaxManager in your case. It works with both RadControls and Prometheus RadControl. I've attached a sample here illustrating it. You can have a look at it and tell us if you are doing something different. If the problem still persist please give us more details about your problematic code.
Regards,
Iana
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center

The control with ID 'RadAjaxManager1' requires a ScriptManager on the page. The ScriptManager must appear before any controls that need it.
Here is the relevant page code:
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="PublicSite.master.cs" Inherits="PublicSite" %>
<%@ Register Assembly="RadWindow.Net2" Namespace="Telerik.WebControls" TagPrefix="radW" %>
<%@ Register Assembly="RadRotator.Net2" Namespace="Telerik.WebControls" TagPrefix="radR" %>
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="ajaxToolkit" %>
...
<Body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
<form id="form1" name="form1" runat="server">
<input type='text' style='visibility: hidden' name='oDiscard'>
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"></telerik:RadAjaxManager>
<radW:radwindowmanager id="WindowManager1" runat="server">
<windows>
<radW:radwindow id="rwCharity" Behavior="None" runat="server" width="300px" height="300px" Title="Giving Back!" Modal="true" navigateurl="Charity.aspx"></radw:radwindow>
</windows>
</radW:radwindowmanager>
...
And here is my web.config entries:
<
pages>
<controls>
<add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add namespace="AjaxControlToolkit" assembly="AjaxControlToolkit" tagPrefix="ajaxToolkit"/>
</controls>
</pages>
Can you please help?!? Thanks!
Ken
Can you please move the ScriptManager inside the form tag and let us know about the result?
Kind regards,
Vlad
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center

<form id="form1" name="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"></telerik:RadAjaxManager>


thanks
Joey
There is no separate link for the 3.5 version. When you download/install the new RadControls for ASP.NET AJAX, the 3.5 version will be available in your installation Bin35 folder.
All the best,
Konstantin Petkov
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center