经典的AspNetPager样式 - SK的日志 - 网易博客

来源:百度文库 编辑:神马文学网 时间:2024/05/04 08:43:49

经典的AspNetPager样式

ASP.net 2010-05-21 15:28:36 阅读392 评论0 字号:大中

自定义样式:

  

  前台:

  

  

  

  

  

  FirstPageText="首页"  LastPageText="尾页" NextPageText="下一页"  PageSize="20" PrevPageText="上一页"  ShowCustomInfoSection="Left"

  ShowInputBox="Never" onpagechanged="AspNetPager1_PageChanged"  CustomInfoTextAlign="Left" LayoutType="Table"  >

  

  

  后台:

  void bindData()

  {       .......绑定语句       this.AspNetPager1.CustomInfoHTML = string.Format("当前第{0}/{1}页 共{2}条记录 每页{3}条", new object[] { this.AspNetPager1.CurrentPageIndex, this.AspNetPager1.PageCount, this.AspNetPager1.RecordCount, this.AspNetPager1.PageSize });

  }

  protected void AspNetPager1_PageChanged(object src, EventArgs e)

  {

  bindData();

  }