当GridView中显示的记录很多的时候,可以通过GridView的分页功能来分页显示这些记录。如果GridView是直接绑定数据库,则很简单:将"启动分页"打勾即可。
如果是用代码实现,则需要这么做:
1、允许分页AllowPaging属性为True;
2、设置GridView属性栏中PagerSetting里的一些属性中,定义分页的样式;
3、进行数据绑定,将数据显示到GridView上;
4、通过触发相关事件,将数据分页显示。
部分代码:
1.查询数据并绑定
/// <summary>
/// 查询数据进行数据绑定
/// </summary>
private void BindData()
{
//将数据部署到GridView中
string Constr = "数据库信息";
string sqlstr = "SQL语句";
SqlConnection con = new SqlConnection(Constr);
SqlDataAdapter ad = new SqlDataAdapter(sqlstr, con);
DataSet ds = new DataSet();
ad.Fill(ds);
GridView1.DataSource = ds;
GridView1.DataBind();
}
2.事件处理
/// <summary>
/// 分页事件
/// </summary>
protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
GridView1.PageIndex = e.NewPageIndex;
//重新绑定数据
BindData();
}
3.添加分页显示
/// <summary>
/// 添加分页码显示
/// </summary>
protected void GridView1_DataBound(object sender, EventArgs e)
{
//添加分页码显示
GridViewRow bottomPagerRow = GridView1.BottomPagerRow;
Label bottomLabel = new Label();
bottomLabel.Text = "目前所在分页:(" + (GridView1.PageIndex + ) + "/" + GridView1.PageCount + ")";
bottomPagerRow.Cells[].Controls.Add(bottomLabel);
}