C# 利用WebService+AJAX向后台传参

第一步:页面准备AJAX的请求:

如: $.ajax({
        type: "POST",
        url: "Main.aspx/GetDataTable",
        datatype: "json",
        contentType: "application/json; charset=utf-8",
        data: JSON.stringify({ "time": time }),
        success: function (r) {

     }});

红色字体是要传参的数据

第二步:引入using System.Web.Services; //WebMethod 依赖于此引用

[WebMethod]

public List GetDataTable(string time)
{

 }

关键点:函数参数的名字要和aiax请求发送的参数名一致。

你可能感兴趣的:(2018编程笔记)