CheckBoxList返回Checked

时间:2013-01-23 17:36:55

标签: c#

我在模板字段中有CheckBoxList:

<asp:TemplateField HeaderText="Check Box">
        <ItemTemplate>
            <asp:CheckBoxList ID="CheckBoxList1" runat="server">
                <asp:ListItem></asp:ListItem>
            </asp:CheckBoxList>
        </ItemTemplate>
        </asp:TemplateField> 

我想检查是否已选中所有复选框。如果未选中所有复选框,则无法前进。

for (int i = 0; i < GridView1.Rows.Count; i++)
    {

        GridViewRow row = GridView1.Rows[i];

        bool isChecked = ((CheckBoxList)row.FindControl("CheckBoxList1")).Checked;

        if (isChecked)

            Response.Write("Its Checked");

        else

            Response.Write("Not Check");  

    }

问题在于,即使它没有,它也总是返回“已检查”。可能是因为我无法在模板视图中使用CheckBoxList。并且Checked显然不是方法“CheckBoxList”的属性

2 个答案:

答案 0 :(得分:0)

您需要使用CheckBoxList.SelectedItems.Count将其与总项目进行比较,以确定是否已选择所有项目。

CheckBoxList CheckBoxList1 = ((CheckBoxList)row.FindControl("CheckBoxList1")).Enabled;    
int i = 0;
for(i = 0; i < CheckBoxList1.Items.Count; i++)
    if (!CheckBoxList1.Items[i].Checked)
        break;
if(i == CheckBoxList1.Items.Count)
     Response.Write("Its Checked");
else
     Response.Write("Not Check");  

答案 1 :(得分:0)

您应该检查所有项目并计算检查了多少项目。然后将该值与复选框列表中的项目总数进行比较

 for (int i = 0; i < GridView1.Rows.Count; i++) {
        GridViewRow row = GridView1.Rows[i];  
        if(row.RowType == DataControlRowType.DataRow) {
            CheckBoxList CheckBoxList1= row.FindControl("CheckBoxList1")) as CheckBoxList;                 
           //CheckBoxList CheckBoxList1= row.Cells[cbCellIndex].FindControl("CheckBoxList1")) as CheckBoxList;                 
           int checkedCount = 0;
           foreach (ListItem item in CheckBoxList1.Items) {
               checkedCount += item.Selected ? 1 : 0;
            }
            if (checkedCount == CheckBoxList1.Items.Count) { 
                //all checked
            }
            else if (checkedCount == 0)
            {
               //none checked
            }
       }
  }

} 并且Enabled只显示用户是否可以与之交互。如果Enabled == false您将看到已禁用的复选框