打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
GrilView漂亮分页效果


<PagerTemplate>
                                         <table>
                                             <tr>
                                                 <td style="height: 47px">
                                                     <asp:Label ID="LabelCurrentPage" runat="server" Font-Size="Small">当前页:<%# ((GridView)Container.NamingContainer).PageIndex + 1 %></asp:Label></td>
                                                 <td style="height: 47px">
                                                     <asp:Label ID="LabelPageCount" runat="server" Font-Size="Small">总页数:<%# ((GridView)Container.NamingContainer).PageCount %></asp:Label></td>
                                                 <td style="height: 47px">
                                                     <asp:LinkButton ID="LinkButtonFirstPage" runat="server" CommandArgument="First" CommandName="Page"
                                                         Enable="<%# ((GridView)Container.NamingContainer).PageIndex != 0 %>" Font-Size="Small">首页</asp:LinkButton></td>
                                                 <td style="height: 47px">
                                                     <asp:LinkButton ID="LinkButtonPreviousPage" runat="server" CommandArgument="Prev"
                                                         CommandName="Page" Enable="<%# ((GridView)Container.NamingContainer).PageIndex != 0 %>"
                                                         Font-Size="Small">上一页</asp:LinkButton></td>
                                                 <td style="height: 47px">
                                                     <asp:LinkButton ID="LinkButtonNextPage" runat="server" CommandArgument="Next" CommandName="Page"
                                                         Enable="<%# ((GridView)Container.NamingContainer).PageIndex != ((GridView)Container.NamingContainer).PageCount - 1 %>"
                                                         Font-Size="Small">下一页</asp:LinkButton></td>
                                                 <td style="height: 47px">
                                                     <asp:LinkButton ID="LinkButtonLastPage" runat="server" CommandArgument="Last" CommandName="Page"
                                                         Enable="<%# ((GridView)Container.NamingContainer).PageIndex != ((GridView)Container.NamingContainer).PageCount - 1 %>"
                                                         Font-Size="Small">尾页</asp:LinkButton></td>
                                             </tr>
                                         </table>
                                     </PagerTemplate>
<PagerTemplate></PagerTemplate> 之间添加!实行美观的分页效果 (右键编辑PagerTemplate找到)
需要在
    protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e)
    {
    }
添加
        try
        {
            GridView1.PageIndex = e.NewPageIndex;
            SMS_BindGrid();
        }
        catch { }
 
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/zhaoyun1016/archive/2009/07/25/4380412.aspx
本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
【热】打开小程序,算一算2024你的财运
GridView的分页-万能分页代码
gridview的事件大全
ASP.NET 2.0数据处理之高级分页与排序
gridview分页模型
asp.net gridview 分页
gridview中取得当前行的行号
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服