AspNetPager 样式以及使用(漂亮)

来源:互联网 发布:win7网络位置怎么修改 编辑:程序博客网 时间:2024/05/28 04:52

 

分页是Web应用程序中最常用到的功能之一,AspNetPager  简单实用,应用到项目后台中,棒极了!

 

自定义样式:

<style type="text/css">/*拍拍网风格*/.paginator { font: 11px Arial, Helvetica, sans-serif;padding:10px 20px 10px 0; margin: 0px;}.paginator a {padding: 1px 6px; border: solid 1px #ddd; background: #fff; text-decoration: none;margin-right:2px}.paginator a:visited {padding: 1px 6px; border: solid 1px #ddd; background: #fff; text-decoration: none;}.paginator .cpb {padding: 1px 6px;font-weight: bold; font-size: 13px;border:none}.paginator a:hover {color: #fff; background: #ffa501;border-color:#ffa501;text-decoration: none;}/*淘宝风格*/.paginator { font: 12px Arial, Helvetica, sans-serif;padding:10px 20px 10px 0; margin: 0px;}.paginator a {border:solid 1px #ccc;color:#0063dc;cursor:pointer;text-decoration:none;}.paginator a:visited {padding: 1px 6px; border: solid 1px #ddd; background: #fff; text-decoration: none;}.paginator .cpb {border:1px solid #F50;font-weight:700;color:#F50;background-color:#ffeee5;}.paginator a:hover {border:solid 1px #F50;color:#f60;text-decoration:none;}.paginator a,.paginator a:visited,.paginator .cpb,.paginator a:hover  {float:left;height:16px;line-height:16px;min-width:10px;_width:10px;margin-right:5px;text-align:center; white-space:nowrap;font-size:12px;font-family:Arial,SimSun;padding:0 3px;} </style>

前台:
<%@ Register Assembly="AspNetPager" Namespace="Wuqi.Webdiyer" TagPrefix="webdiyer" %>
<table cellpadding="0" cellspacing="0" align="center" width="99%" class="border"><tr><td align="left" colspan="2"><webdiyer:AspNetPager ID="AspNetPager1" CssClass="paginator"   CurrentPageButtonClass="cpb" runat="server" AlwaysShow="True" FirstPageText="首页"  LastPageText="尾页" NextPageText="下一页"  PageSize="20" PrevPageText="上一页"  ShowCustomInfoSection="Left" ShowInputBox="Never" onpagechanged="AspNetPager1_PageChanged"  CustomInfoTextAlign="Left" LayoutType="Table"  ></webdiyer:AspNetPager></td></tr></table>

 

后台:

  protected void Page_Load(object sender, EventArgs e)    {

        if (!IsPostBack)        {            bindData();        }    }

    void bindData()    {        int count = 0;

        System.Collections.Generic.IList<Smartsite.News.Model.InfoInfo> list = Smartsite.News.BLL.Info.GetInfoByCondition(ref count, pageSize, AspNetPager1.CurrentPageIndex - 1, category, key, company, author, start, end, type);        if (list != null)        {            this.AspNetPager1.RecordCount = count;

            this.AspNetPager1.PageSize = pageSize;            this.repList.DataSource = list;            this.repList.DataBind();        }        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();    }

 

注:添加AspNetPager.dll的引用

原创粉丝点击