using webdiyer:AspNetPager(AspNetPager.dll)

來源:互聯網
上載者:User

1 add the control in  aspx page:

<webdiyer:AspNetPager id="AspNetPager1" runat="server" CssClass="hui_01" ShowInputBox="always" ShowPageInfo="before"
        HorizontalAlign="center"></webdiyer:AspNetPager>

說明: ShowInputBox 可以出現輸入框,指定跳轉頁面;

2  .cs

DataSet ds = brPager.LoadList(pager,ref allcount);

//allcount 用於接收記錄總數

if(dt.Rows.Count>0)
   {

    this.AspNetPager1.FirstPageText="第一頁";
    this.AspNetPager1.LastPageText="最後一頁";
    this.AspNetPager1.NextPageText="下一頁";
    this.AspNetPager1.PrevPageText="上一頁";
    this.AspNetPager1.TextBeforePager="記錄總數:"+allcount.ToString();
    this.AspNetPager1.PageSize=pagesize;
    this.AspNetPager1.PageButtonCount=4;
    this.AspNetPager1.RecordCount=allcount;
   }

3 AspNetPager1 翻頁事件 主要是傳入要顯示的頁數

this.AspNetPager1.PageChanged += new Wuqi.Webdiyer.PageChangedEventHandler(this.AspNetPager1_PageChanged);

private void AspNetPager1_PageChanged(object src, Wuqi.Webdiyer.PageChangedEventArgs e)
  { 
   this.AspNetPager1.CurrentPageIndex=e.NewPageIndex;
   LoadInfoList(this.getCondition(),e.NewPageIndex);
  }

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.