I\'m kind of newbie in javascript so I\'m looking for some help to create a way to drag and drop geocoding markers, to allow interactive changing addresses. I believe this is po
Have a look at jQuery Ajax:
Example (assuming a .NET web service that resides at a web root folder called Ajax):
var Params = "{'myParamName': 'myParamValue'}";
$.ajax({
type: "POST",
url: "Ajax/MyWebService.asmx/MyWSMethod",
data: Params,
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (response) {
// Handle the response here as you need to...
},
failure: function () {
// Handle failure if needed
}
});