Skip to content Skip to sidebar Skip to footer

Javascript Asmx Web Service Call - Handling Exceptions

I've got a web service that returns me an array of strings. I call this service from my javascript... WebPortal.WebPortalServices.GetAllProperties(success, fail); Now this works f

Solution 1:

function fail(arg)

{

alert("error has occured: " + arg._message);

}

Post a Comment for "Javascript Asmx Web Service Call - Handling Exceptions"