jquery ajaxを使用してAsp.netでWebサービスを呼び出しています。しかし、私の WebMethod は起動していません。なんで?
$(document).ready(function () {
$('#btnAdresBilgisi').click(function () {
$.blockUI();
$.ajax({
type: "GET",
url: "OnKayitWebService.asmx/HelloWorld",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: OnSuccess,
error: AjaxFailed
});
$.unblockUI();
});
function AjaxFailed(response) {
if (response.d) {
alert("Güncelleme işlemi başarısızdır.", 'Bilgi');
}
}
function OnSuccess(response) {
if (response.d) {
alert("Güncelleme işlemi başarılıdır.", 'Bilgi');
}
}
});
[WebMethod]
public string HelloWorld() {
return "hello";
}