我在http://techcodesolutions.com/test/urlHostDemo/callHost.aspx地址的服务器上有一个网页。在那个页面中我有[webMethod]
[WebMethod]
public static string method()
{
return "This is message from server";
}
我想通过我的本地网页使用ajax代码
来调用此方法$(document).ready(function () {
$("#aClick").click(function () {
$.ajax({
type: "POST",
url: "http://techcodesolutions.com/test/urlHostDemo/callHost.aspx/method",
contentType: "application/json;charset=utf-8",
dataType: "json",
success: function (data) {
var b = data.d;
$("#lblMessage").text(b);
},
error: function (response) {
alert("no match");
}
});
});
});
但是显示ajax错误消息。请你们告诉我怎么称呼它。