快速业务通道

ASP.NET GirdView学习之六 使用模板列实现多行删除

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-05-19
1using System;
2using System.Data;
3using System.Configuration;
4using System.Collections;
5using System.Web;
6using System.Web.Security;
7using System.Web.UI;
8using System.Web.UI.WebControls;
9using System.Web.UI.WebControls.WebParts;
10using System.Web.UI.HtmlControls;
11using System.Collections.Generic;
12
13public partial class GridViewTemplateTest : System.Web.UI.Page
14 {
15 //当前页码,从0开始
16 private int curPage
17 {
18 get
19 {
20 return ViewState["curPage"] == null ? 0 : Convert.ToInt32(ViewState["curPage"]);
21 }
22 set
23 {
24 ViewState["curPage"] = value;
25 }
26 }
27 protected void Page_Load(object sender, EventArgs e)
28 {
29 if (!IsPostBack)
30 {
31 ClientInfoAccessObj accessor = new ClientInfoAccessObj();
32 curPage = 0; //显示第一页 33 GridView1.DataSource = accessor.GetAllClients();
34 GridView1.DataBind();
35 }
36 }
37 protected void btnDeleteSelectedInfo_Click(object sender, EventArgs e)
38 {
39 List<int> SelectedClientIDs = GetSelectedClientIDs();
40 if (SelectedClientIDs.Count == 0)
41 return;
42
43 ClientInfoAccessObj accessor = new ClientInfoAccessObj();
44 foreach (int id in SelectedClientIDs)
45 {
46 accessor.DeleteClientInfoForID(id);
47 }
48 ClientScript.RegisterStartupScript(this.GetType(), "info", "alert(''记录已成功删除'');", true);
49
50 //计算应该显示哪一页
51 if (SelectedClientIDs.Count == GridView1.PageSize) //选中全页上的所有记录
52 if (curPage != 0)
53 curPage--; //显示前一页
54
55
56 //重新绑定数据并显示
57 GridView1.DataSource = accessor.GetAllClients();
58 GridView1.PageIndex = curPage;
59 GridView1.DataBind();
60 }
61
62 private List<int> GetSelectedClientIDs()
63 {
64 List<int> ids = new List<int>();
65 //循环查找被选中的行
66 foreach (GridViewRow gvr in GridView1.Rows) 67 {
68 //是数据行
69 if (gvr.RowType == DataControlRowType.DataRow)
70 {
71 //根据模板列中的控件ID查找指定的控件
72 CheckBox chk = gvr.FindControl("CheckBox1") as CheckBox;
73 if ((chk != null) && chk.Checked)
74 //取出选中行的主键,加入到集合中
75 ids.Add((int)GridView1.DataKeys[gvr.RowIndex].Value);
76 }
77 }
78 return ids;
79 }
80 protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e)
81 {
82 ClientInfoAccessObj accessor = new ClientInfoAccessObj();
83 GridView1.DataSource = accessor.GetAllClients();
84 GridView1.PageIndex = e.NewPageIndex;
85 GridView1.DataBind();
86 //保存当前页码
87 curPage = e.NewPageIndex;
88 }
89}
90

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号