1 <asp:GridView ID="GridView1" runat="서버" AutoGenerateColumns="False" PageSize="5"
2 Width="726px" AllowPaging="True" AllowSorting="True"
3 DataKeyNames="DB1_1,DB1_2" OnRowDeleting="GridView1_RowDeleting" OnPageIndexChanging="GridView1_PageIndexChanging" OnRowDataBound="GridView1_RowDataBound" OnSorting="GridView1_Sorting" 높이="279px" >
4 <열>
5 <asp:TemplateField HeaderText="序号" >
6 <항목템플릿>
7 <%# this.GridView1.PageIndex * this.GridView1.PageSize + this.GridView1.Rows.Count + 1%>
8 </ItemTemplate>
9 </asp:TemplateField>
10 <asp:TemplateField HeaderText="选择" >
11 <항목템플릿>
12 <asp:CheckBox ID="chkSelect" runat="server" ></asp:CheckBox>
13 </ItemTemplate>
14 </asp:TemplateField>
15 <asp:TemplateField HeaderText="操작" ShowHeader="False">
16 <항목템플릿>
17 <asp:LinkButton ID="lbtnDelete" runat="server" CausesValidation="False" CommandName="삭제"
18 Text="删除" OnClientClick="반환 확인('确认要删除吗?');"></asp:LinkButton>
19 </ItemTemplate>
20 </asp:TemplateField>
21 </열>
22 <AlternatingRowStyle BackColor="아쿠아마린" />
23 </asp:GridView>
1 <asp:CheckBox ID="chkSelectAll" runat="server" Text="전체부조중" OnCheckedChanged="chkSelectAll_CheckedChanged" AutoPostBack="True" ></asp:CheckBox>
2 <asp:Button ID="btnDelete" runat="server" Text="删除" OnClick="btnDelete_Click" />
1 protected void btnDelete_Click(객체 전송자, EventArgs e)
2 {
3 문자열 strDelete = "";
4 for (int i = 0; i < this.GridView1.Rows.Count; i++)
5 {
6 문자열 라벨;
7 bool isChecked = ((CheckBox)GridView1.Rows[i].FindControl("chkSelect")).Checked;
8 Label = ((Label)GridView1.Rows[i].FindControl("labXH")).Text;
9 if (isChecked)
10 {
11 strDelete = "DB1_1" + "=" + 라벨;
12 }
13 }
14 conn.RunSql("DB1에서 삭제합니다. 여기서 " + strDelete
15 this.chkSelectAll.Checked = false;
16 그리드뷰바인드();
17 }
18
19 protected void chkSelectAll_CheckedChanged(개체 전송자, EventArgs e)
20 {
21 //遍历GridView行获取CheckBox属性
22 for (int i = 0; i < this.GridView1.Rows.Count; i++)
23 {
24 ((CheckBox)GridView1.Rows[i].FindControl("chkSelect")).Checked = this.chkSelectAll.Checked;
25 }
26 }