如何将完整的服务器URL传递给asp.net中的ajax调用

时间:2015-02-20 07:00:33

标签: jquery asp.net ajax

我在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错误消息。请你们告诉我怎么称呼它。

0 个答案:

没有答案