我正在尝试将两个列表和一个日期值从客户端发送到服务器。我创建了我的 url,当我提醒它是正确的。当我将数据发送到服务器时,我试图提取但我没有正确获取我的值。这是我的 JQ 代码:
$("#insert").click(function () {
listofsit = "";
$(".sel").each(function () {
listofsit += $(this).val() + ",";
});
listofsit += "#";
//alert(listofsit);
listofmem = "";
$(".clsid").each(function () {
listofmem += $(this).html() + ",";
});
listofmem += "#";
// alert(listofmem);
var date = $("#date").val();
var url = "rollcall.aspx?cmd=ins&sitlist=" + listofsit + "&memlist=" + listofmem +"&date=" + date;
// alert(url);
$.post(url, function (d) { alert(d) });
});
这是我的 C# 部分:
if (cmd == "ins")
{
mydb db = new mydb();
string[] sitlst = Request.QueryString[1].ToString().Split(',');
string[] memt = Request.QueryString[2].ToString().Split(',');
var date = Request["date"];
Response.Write("1");
cmd = "fillgrid";
Response.End();
}