0

我在asp.net中进行JQuery Ajax调用,我用我的WebMethod返回String,但是在ajax调用成功时,我得到了页面的完整HTML结果。我也使用了类型:“get”但没有运气,下面是我的ajax调用代码

$.ajax({
    type: "POST",
    url: "MyPage.aspx/GetData", //url to point your webmethod          
    success: function (Result) {
        if (Result != "")
            alert( Result);
        },
    error: function () { alert('error'); }
});

[System.Web.Services.WebMethod()]
public string GetData()
{
    //getting value from Database and returning
}

我在 MyPage.aspx 中调用这个 Ajax

4

1 回答 1

1

像这样试试。使用 contentType: "application/json; charset=utf-8"

$.ajax({
    type: "POST",
    url: "MyPage.aspx/GetData", //url to point your webmethod          
    contentType: "application/json; charset=utf-8",
    success: function (Result) {
        if (Result != "")
            alert( Result);
        },
    error: function () { alert('error'); }
});
于 2013-08-15T11:07:14.340 回答