RadAjax for ASP.NET AJAX

RadControls for ASP.NET AJAX

By default the ajaxRequest and ajaxRequestWithTarget functions accept only one argument. Sometimes one might need to pass more arguments - this can be achieved by joining the arguments on the client:

CopyASPX
var arg3 = arg1 + "," + arg2;
ajaxManager.ajaxRequest(arg3);
//

and split them on the server in the AjaxManager_AjaxRequest: