在后台引入 using System.Web.Services 命名空间

然后在编写web服务方法:

     [WebMethod]
public static string GetData(string time, string targetColumn)
{
return "我是一个位于Aspx页面的WebService方法";
}

前端用Ajax的Post方法发送请求:

 $.ajax({
type: "post",
url: url,
datatype: "json",
contentType: "application/json",
data: requestData,
success: function (obj){
console.debug(obj);
},
error: function (message) {
}
});

这样执行这个Ajax方法就可以用Aspx页面处理WebService请求了。

05-11 09:23