How ASP.Net Ajax - PageMethods Synchronously Call and Search Results?
I am currently making an async call and working with data:
function checkName(name) {
PageMethods.IsAvailable(name, onSuccess);
}
function onSuccess(result, context, method) {
}
How can I do the same in sync with the result ?
source
share