Hi All, suppose I have a simple web method in a web service that takes three arguments i.e. string length, string width, and string height. When the web method is called, these three parameters are converted to numbers then they are multiplied together to produce the volume. The web method then returns the volume to the function that invoked it.
If I were to call this web service from clientside using AJAX, how do I pass the required data as parameters to the webmethod, and what would my AJAX code look like especially in the success portion of my AJAX call? Thanks in advance for your help.