实现GridView分页功能的四个关键步骤
1、设置AllowPaging=”True”
2、设置PageSize=每页纪录数。
3、设置分页事件OnPageIndexChanging=分页事件;如:本例分页事件命名为:Page_Change
前三步具体如下例蓝色部分:
<asp:GridView ID=”GridView1″ runat=”server” AutoGenerateColumns=”False”
OnRowCommand=”Grid_Row_Com” AllowPaging=”True”
PageSize=”5″ OnPageIndexChanging=“Page_Change” >
4、编辑分页事件。
(1)、设定GridView.pageIndex属性;
(2)、重新绑定GridView的数据源。
protected void Page_Change(object sender, GridViewPageEventArgs e)
{
GridView1.PageIndex = e.NewPageIndex;
My_DataBind();
}
其中:My_DataBind()为该页面中的数据绑定函数。具体如下:
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
My_DataBind();
}
}
protected void My_DataBind()
{
string My_ConString = ConfigurationManager.AppSettings[“db_Tome1ConnectionString”];
SqlConnection My_Con = new SqlConnection(My_ConString);
string My_Sel = “select * from tb_GoodsInfo”;
SqlDataAdapter My_Ada = new SqlDataAdapter(My_Sel, My_Con);
DataSet My_Set = new DataSet();
My_Ada.Fill(My_Set, “Mytable”);
GridView1.DataSource = My_Set.Tables[“Mytable”];
GridView1.DataKeyNames = new string[] { “GoodsID” };
GridView1.DataBind();
My_Con.Close();
}
今天的文章如何实现GridView分页功能?分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/27570.html