D
dgk
Calling a simple webmethod from a page with the scriptmanager works
like this:
ret = SimpleService.SayHello(document.getElementById('Text1').value,
OnComplete, OnTimeOut, OnError);
The first parameter is the one expected by the function, and the rest
are callbacks. What is the format for calling a method that takes more
than one parameter?
like this:
ret = SimpleService.SayHello(document.getElementById('Text1').value,
OnComplete, OnTimeOut, OnError);
The first parameter is the one expected by the function, and the rest
are callbacks. What is the format for calling a method that takes more
than one parameter?