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安装--window版
    (六--二)scrapy框架之持久化操作
    windows安装redis
    (六--一)scrapy框架简介和基础应用
    (五)selenuim和phantonJs处理网页动态加载数据的爬取
    (四)requests模块的cookies和代理操作
    (三)三种数据解析方式学习
    (二)requests模块
  • 原文地址:https://www.cnblogs.com/kingboy/p/1040825.html
Copyright © 2011-2022 走看看