Hi,
In my codebehind of a content page I have teh following on the page load:
In my codebehind of a content page I have teh following on the page load:
AddHandler
RadAjaxManager.GetCurrent(Page).AjaxRequest, AddressOf RadAjaxManager1_AjaxRequest
In some javascript I have the following:
var ram = $find("ctl00_RadAjaxManager1");
ram.ajaxRequestWithTarget(
"ctl00$RadAjaxManager1", "DoSomething");
This works great. I get the event on the server side. However, if I try to update control nothing happens.
Since the RadAjaxManager is not a control on the content page (it's on the masterpage) and since the RadAjaxManagerProxy is not one of the options of the controls that will initiate a request, I can't see how to tell the thing what controls I want updated in the case of the ram.ajaxRequestWithTarget("ctl00$RadAjaxManager1", "DoSomething") call.
Can anyone help?
Thanks ... Ed