I've had great success with initiating ajax calls from the master page passing an argument and then calling the proper method to invoke the action I want.
But how do I do this from a child of a master page.
The master page has this:
protected void RadAjaxMasterManager1_AjaxRequest(object sender, Telerik.Web.UI.AjaxRequestEventArgs e)
{
if (e.Argument == "METHOD")
{
CallMethod();
}
}
How do I add to this list for a child method so I make calls via javascript.
Thanks
John
But how do I do this from a child of a master page.
The master page has this:
protected void RadAjaxMasterManager1_AjaxRequest(object sender, Telerik.Web.UI.AjaxRequestEventArgs e)
{
if (e.Argument == "METHOD")
{
CallMethod();
}
}
How do I add to this list for a child method so I make calls via javascript.
Thanks
John