zoukankan      html  css  js  c++  java
  • AspNetPager

    AspNetPager使用方法
    引入dll
    <%@ Register assembly="AspNetPager" namespace="Wuqi.Webdiyer" tagprefix="webdiyer" %>
    拖入控件

    bindList():
    //数据总数
    pager.RecordCount = int ;
    //repeater绑定数据源
    FlowList.DataSource =  datatable;
    //repeater绑定数据
    FlowList.DataBind();
    //页change行为
            protected void pager_PageChanging(object src, Wuqi.Webdiyer.PageChangingEventArgs e)
            {
                pager.CurrentPageIndex = e.NewPageIndex;
                bindList();
            }

    前台:
          <webdiyer:AspNetPager ID="pager" runat="server" CssClass="pages"
                CurrentPageButtonClass="cpb" NextPageText="下一页" PrevPageText="上一页"
                FirstPageText="首页" LastPageText="尾页" SubmitButtonText="确 定"
                ShowInputBox="Always" TextBeforeInputBox="直接到" TextAfterInputBox="页"
                                                    AlwaysShow="True" PageSize="25"
                onpagechanging="pager_PageChanging">
                                                </webdiyer:AspNetPager>

    protected void PagerBind() {
                AspNetPager1.RecordCount = BLLPortal.GetContentTableBySecondClassID(ClassID, 50000, "ID desc").Rows.Count;
                SecondList.DataSource = BLLPortal.GetContentTableBySecondClassID2(ClassID, AspNetPager1.PageSize, AspNetPager1.CurrentPageIndex, "ID desc");
                SecondList.DataBind();
            }
    protected void AspNetPager1_PageChanging(object src, Wuqi.Webdiyer.PageChangingEventArgs e)
            {
                AspNetPager1.CurrentPageIndex = e.NewPageIndex;
                PagerBind();
            }

  • 相关阅读:
    wzplayer2 支持mac 了,最新谍报
    关于duilib的理解
    DMS的实现转载
    视频通话最新谍报
    新人补钙系列教程之:Function类的重要方法apply()
    新人补钙系列教程之:webgame好友模块原型开发一
    新人补钙系列教程之: 大型 webGame 开发系列之 pipes
    新人补钙系列教程之:模拟java多线程Thread类
    flash学习网站
    新人补钙系列教程之:AS3与服务器通信
  • 原文地址:https://www.cnblogs.com/handsomer/p/3678237.html
Copyright © 2011-2022 走看看