DataGridView控件怎么实现分页功能?
6个回答
2013-06-27
展开全部
DBsher.connection.Open();
string str = "select * from labour";
OracleDataAdapter da = new OracleDataAdapter(str, DBsher.connection);
DataSet ds = new DataSet();
da.Fill(ds, "labour");
PagedDataSource pds = new PagedDataSource(); //创建数据源
pds.DataSource = ds.Tables[0].DefaultView;
pds.AllowPaging = true; //是否分页
pds.PageSize = int.Parse(this.ddl.SelectedItem.Value); ///显示页数
pageCount = pds.PageCount;
lab2.Text = pageCount.ToString(); //获取总页数
pds.CurrentPageIndex = currentpage - 1;
lab3.Text = Convert.ToString(currentpage);//当前页
this.datalist.DataSource = pds;// 数据绑定
this.datalist.DataBind();
这有个datalist分页的代码,你对照着看看,其实都差不多的。
string str = "select * from labour";
OracleDataAdapter da = new OracleDataAdapter(str, DBsher.connection);
DataSet ds = new DataSet();
da.Fill(ds, "labour");
PagedDataSource pds = new PagedDataSource(); //创建数据源
pds.DataSource = ds.Tables[0].DefaultView;
pds.AllowPaging = true; //是否分页
pds.PageSize = int.Parse(this.ddl.SelectedItem.Value); ///显示页数
pageCount = pds.PageCount;
lab2.Text = pageCount.ToString(); //获取总页数
pds.CurrentPageIndex = currentpage - 1;
lab3.Text = Convert.ToString(currentpage);//当前页
this.datalist.DataSource = pds;// 数据绑定
this.datalist.DataBind();
这有个datalist分页的代码,你对照着看看,其实都差不多的。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询