Hi, I have been working with syncron calls in AjaxPro, and I am now looking into asyncron calls. I have been looking at the example Here
My question is how do I pass variables to my ajaxpro method? I would like to add some properties to the AjaxMethod MyMethod, but how is it done?
<script type="text/javascript">
function callback(res) {
alert(res.value);
}
function invokeMyMethod() {
Namespace.Classname.MyMethod(callback);
}
</script>