zoukankan      html  css  js  c++  java
  • GridView 自定义分页

    1. 默认分页方式
    (1) 是否允许分页
    GridView的AllowPaging属性。

    (2) 每页记录数
    GridViewPageSize

    (3) 分页导航条形式
    GridViewPagerSettings属性的Mode:Numeric,NextPrevious,NextPreviousFirstLast,NumericFirstLast。

    (4)GridViewOnPageIndexChanging="GridView1_PageIndexChanging 
    2. 自定义分页
    (1) 当前页
    <asp:Label  ID="LabelCurrentPage" runat="server" 
     Text
    ="<%# ((GridView)Container.NamingContainer).PageIndex + 1 %>"></asp:Label> 


    (2) 总页数
    <asp:Label ID="LabelPageCount" runat="server" 
     Text
    ="<%# ((GridView)Container.NamingContainer).PageCount %>"></asp:Label> 


    (3) 首页、上一页、下一页、尾页
    <asp:LinkButton ID="LinkButtonFirstPage" runat="server" CommandArgument="First" CommandName="Page" 
     Visible
    ="<%# ((GridView)Container.NamingContainer).PageIndex != 0 %>">首页</asp:LinkButton> 

    <asp:LinkButton ID="LinkButtonPreviousPage" runat="server" CommandArgument="Prev" CommandName="Page" 
     Visible
    ="<%# ((GridView)Container.NamingContainer).PageIndex != 0 %>">上一页</asp:LinkButton> 

    <asp:LinkButton ID="LinkButtonNextPage" runat="server" CommandArgument="Next" CommandName="Page" 
     Visible
    ="<%# ((GridView)Container.NamingContainer).PageIndex != ((GridView)Container.NamingContainer).PageCount - 1 %>">下一页</asp:LinkButton> 

    <asp:LinkButton ID="LinkButtonLastPage" runat="server" CommandArgument="Last" CommandName="Page" 
     Visible
    ="<%# ((GridView)Container.NamingContainer).PageIndex != ((GridView)Container.NamingContainer).PageCount - 1 %>">尾页</asp:LinkButton> 
     

    注:将上面自定义的代码写在GridView的<PagerTemplate></PagerTemplate>标签内即可。

    CS页面

       protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e)
          {
              GridView1.PageIndex = e.NewPageIndex;
              DataBind();
          }

  • 相关阅读:
    MySQL事务隔离级别(InnoDB)
    Kettle连接SQL Server数据库
    jstack分析Java进程信息
    Java对Map集合进行排序
    Java堆分析 jmap+jhat
    Oracle列转行 参数动态传入iBatis使用示例
    Hive UDF函数测试
    test
    《串并行数据结构与算法(SML语言)实验》题解
    educoder SML程序设计题线下编译环境搭建
  • 原文地址:https://www.cnblogs.com/kingboy/p/1040825.html
Copyright © 2011-2022 走看看