我有一个gridview,我在每行中使用复选框。我试图访问每一行的复选框并试图找出哪些复选框已被选中。但是当我尝试运行下面的代码时。条件总是为假,并且代码永远不会达到内部 if 条件。亲切帮助我。提前谢谢。
protected void btn_3id_Click(object sender, EventArgs e)
{
string str = "";
string srr = "";
for (int i = 0; i < GridView1.Rows.Count;i++ )
{
CheckBox chk = (CheckBox)GridView1.Rows[i].FindControl("CheckBox1");
if (chk.Checked==true)
{
if (str == "")
{
str = GridView1.Rows[i].Cells[0].Text.ToString();
}
else
{
srr = str + "," + GridView1.Rows[i].Cells[0].Text.ToString();
}
}
}
Session["Card_id"] = str;
Response.Redirect("ID.aspx");
}