Jquery将数组数据发布到asp.net页面:无法在页面加载事件中检索数组
本文关键字:数组 事件 检索 加载 页面 数据 Jquery net asp | 更新日期: 2023-09-27 18:26:01
使用jQuery ajax post,我将数组变量发布到asp.net页面。但是我无法在页面加载事件中检索数组变量。。
$(document).ready(function () {
var importTable = $("#dataTables-example");
var arrayOfValues = [];
$('#btnDownload').click(function () {
$('input:checkbox:checked', importTable).each(function () {
debugger;
arrayOfValues.push($(this).closest('tr').find('td:nth-child(2)').text());
}).get();
$.post('CS.aspx', { arrayOfValues: arrayOfValues }, function (data) { });
});
});
我的页面加载事件:
protected void Page_Load(object sender, EventArgs e)
{
if (IsPostBack)
{
Response.ContentType = "application/json";
string emptyStringArray = Request.Params["arrayOfValues1"];
}
}
检查请求变量的计数。