如果套用datagridview中的checkboxfield,生成的数据,会出现无法选择datagridview中数据项的问题,即checkbox不可以被鼠标点击,选中/取消选中。此checkbox的选中与否,完全取决于数据库,表中的bool值得类型,当值为true的时候,生成的datagridview中的checkbox是处于勾选状态的,要想取消勾选,需要通过sql语句,来修改后台数据库表中的对应字段的值(把true改成false)。这种方法比较烦。
另一种比较好的做法是在datagridview中增加一个templatefield,然后再在下面添加itemtemplate,在该itemtemplate中,增加checkbox控件。
<asp:GridView ID="GridView2" runat="server" AutoGenerateColumns="False" EnableModelValidation="True" style="width: 13px" > <Columns> <asp:TemplateField> <ItemTemplate> <asp:CheckBox id="chk" runat="server"/> </ItemTemplate> <ItemStyle HorizontalAlign="Center" /> </asp:TemplateField> <asp:BoundField DataField="USERID" HeaderText="代理设定" > <ItemStyle HorizontalAlign="Center" /> </asp:BoundField> </Columns> </asp:GridView>
这样生成的checkbox控件就可以被选中了。选中的checkbox控件,如何取值?
可以循环遍历datagridview中的rows,然后将值checkbox为true的值取出即可。
bool result = false; List<string> name=new List<string> (); ; i < GridView2.Rows.Count;i++ ) { result = ((CheckBox)GridView2.Rows[i].FindControl("chk")).Checked; if (result) name.Add(GridView2.Rows[i].Cells[].Text.Trim()); }
这前面有一个坑需要注意,如果你不小心掉进去了,可能会发生:checkbox被选中之后,后台进行判断,checkbox控件始终处于未被选中状态,即checkbox=false;
这个的原因是在于,点击了页面上的其他控件之后,页面重新刷新了,重新执行了page_load中的方法。所有一定要写成:
if (!IsPostBack)
{
Bind();//这个bind的方法实质是给页面上的gridview绑定数据。如果不加ispostback判断,就会出现上面那个情况。
}