日期:2014-05-17 浏览次数:20364 次
<asp:DataPager ID="Pager" class='pager' runat="server" PageSize="5" PagedControlID="ListView1"> <Fields> <asp:NextPreviousPagerField ButtonType="Link" ShowFirstPageButton="True" ShowNextPageButton="False" FirstPageText="首页" LastPageText="尾页" NextPageText="下一页" PreviousPageText="上一页" /> <asp:NumericPagerField CurrentPageLabelCssClass="current" ButtonCount="10" /> <asp:NextPreviousPagerField ButtonType="Link" ShowLastPageButton="True" ShowPreviousPageButton="False" FirstPageText="首页" LastPageText="尾页" NextPageText="下一页" PreviousPageText="上一页" /> </Fields> </asp:DataPager>
<style type="text/css"> .pager { display: block; padding: 5px 0; margin: 10px 0 10px 0; } .pager a, .pager span { border: 1px solid #E6E7E1; line-height: 20px; margin-right: 5px; padding: 0 6px; color: #0046D5; } .pager a:hover { text-decoration: none; border-color: #0046D5; } .pager .current { background-color: #0046D5; border-color: #0046D5; color: #fff; font-weight: bold; } .pager .total, .pager .total strong { color: Gray; padding: 0 3px; } </style>