我使用jquery ajax将数据发送到后面的代码....
$.ajax({
type: 'POST',
url: 'Epad.aspx/generateReport',
data: "{'exportOptions':" + JSON.stringify( exportOptions ) + "}",
contentType: 'application/json; charset=utf-8',
dataType: 'json',
async: true,
缓存:false, });
我打电话给WebMethod ....
public static void generateReport(dataReportEpad[] exportOptions) {....}
在WebMethod中,我需要访问Gridview内部的C#Gridview和一些TextBox ....
我该怎么做?
答案 0 :(得分:0)