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();
            }

  • 相关阅读:
    1.4 Arduino IDE
    1.3 选择适合的Arduino
    1.2为什么选择Arduino
    1.1什么是Arduino
    博文《arduino入门》预告
    Delphi实现HTMLWebBrowser实现HTML界面
    Delphi判断MDI子窗体是否被创建
    Delphi给窗体镶边-为控件加边框,描边,改变边框颜色
    Delphi 查找标题已知的窗口句柄,遍历窗口控件句柄
    DELPHI实现类似仿360桌面的程序界面
  • 原文地址:https://www.cnblogs.com/handsomer/p/3678237.html
Copyright © 2011-2022 走看看