新微赢技术网

标题: DataGrid中实现Checkbox全选的代码片段 [打印本页]

作者: ﹎想埝祢⿰    时间: 2009-3-16 17:53
标题: DataGrid中实现Checkbox全选的代码片段
  1. for (int i = 0; i < DataGrid1.Items.Count; i++) { HtmlInputCheckBox cb = (HtmlInputCheckBox)this.DataGrid1.Items.Cells[0].FindControl("Checkbox1"); { if (cb.Checked) { using (SqlConnection conn1 = new SqlConnection(SqlHelper.ConnectionStringLocalTransaction)) { conn1.Open(); //自己需要操作数据库的代码 conn1.Close(); } } }
复制代码
  1. function CheckAll(oCheckbox) { var GridView2 = document.getElementById(""); for(i = 1;i .cells[0].getElementsByTagName("INPUT")[0].checked = oCheckbox.checked; } }
复制代码





欢迎光临 新微赢技术网 (http://bbs.weiying.cn/) Powered by Discuz! X3.2