Hi,
I'm new to the AJAX Controls so apologies if this seems really dumb, but it seems that I cannot set the AjaxURL property of RadAjaxManager? We are using URL rewriting on our sites (e.g. http://localhost/big4/website/private/my-park/my-website/in-park-activities.aspx), and the ajax events throw a 404 error on the second time they're fired because it's trying to reference the page http://localhost/big4/website/private/my-park/my-website/index.aspx?id=19
Here is a sample of the code we're using.
I'm new to the AJAX Controls so apologies if this seems really dumb, but it seems that I cannot set the AjaxURL property of RadAjaxManager? We are using URL rewriting on our sites (e.g. http://localhost/big4/website/private/my-park/my-website/in-park-activities.aspx), and the ajax events throw a 404 error on the second time they're fired because it's trying to reference the page http://localhost/big4/website/private/my-park/my-website/index.aspx?id=19
Here is a sample of the code we're using.
<%
@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<telerik:RadAjaxManager ID="RadAjaxManager" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="dlImages">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="pnlMessage" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
<asp:datalist id="dlImages" repeatcolumns="4" repeatdirection="Horizontal" runat="server">
<itemtemplate>
<asp:linkbutton runat="server" id="lnkAdd" cssclass="add" title="Add image to this category" commandname="add">Add</asp:linkbutton>
</itemtemplate>
</asp:datalist>