我在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