我有一个ajax调用,我使用pdb捕获了请求。 request.POST 为我提供以下值:
protected void checkOuput(object sender, EventArgs e)
{
string data = "";
foreach (GridViewRow row in GrdRole.Rows)
{
if (row.RowType == DataControlRowType.DataRow)
{
CheckBox chkRow = (row.Cells[0].FindControl("chkCtrl") as CheckBox);
if (chkRow.Checked)
{
string EmployeeNo = row.Cells[2].Text;
data = data + EmployeeNo + " , " ;
}
}
}
ClientScript.RegisterStartupScript(GetType(), "alert", "alert('" + data + "');", true);
}
但 request.POST.get('status')提供无
答案 0 :(得分:2)
您没有发送表单编码数据,因此request.POST
无用。使用request.body
。