<PagerTemplate>
<table>
<tr>
<td style="height: 47px">
<asp:Label ID="LabelCurrentPage" runat="server" Font-Size="Small">當(dāng)前頁(yè):<%# ((GridView)Container.NamingContainer).PageIndex + 1 %></asp:Label></td>
<td style="height: 47px">
<asp:Label ID="LabelPageCount" runat="server" Font-Size="Small">總頁(yè)數(shù):<%# ((GridView)Container.NamingContainer).PageCount %></asp:Label></td>
<td style="height: 47px">
<asp:LinkButton ID="LinkButtonFirstPage" runat="server" CommandArgument="First" CommandName="Page"
Enable="<%# ((GridView)Container.NamingContainer).PageIndex != 0 %>" Font-Size="Small">首頁(yè)</asp:LinkButton></td>
<td style="height: 47px">
<asp:LinkButton ID="LinkButtonPreviousPage" runat="server" CommandArgument="Prev"
CommandName="Page" Enable="<%# ((GridView)Container.NamingContainer).PageIndex != 0 %>"
Font-Size="Small">上一頁(yè)</asp:LinkButton></td>
<td style="height: 47px">
<asp:LinkButton ID="LinkButtonNextPage" runat="server" CommandArgument="Next" CommandName="Page"
Enable="<%# ((GridView)Container.NamingContainer).PageIndex != ((GridView)Container.NamingContainer).PageCount - 1 %>"
Font-Size="Small">下一頁(yè)</asp:LinkButton></td>
<td style="height: 47px">
<asp:LinkButton ID="LinkButtonLastPage" runat="server" CommandArgument="Last" CommandName="Page"
Enable="<%# ((GridView)Container.NamingContainer).PageIndex != ((GridView)Container.NamingContainer).PageCount - 1 %>"
Font-Size="Small">尾頁(yè)</asp:LinkButton></td>
</tr>
</table>
</PagerTemplate>
<PagerTemplate></PagerTemplate> 之間添加!實(shí)行美觀的分頁(yè)效果 (右鍵編輯PagerTemplate找到)
需要在
protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
}
添加
try
{
GridView1.PageIndex = e.NewPageIndex;
SMS_BindGrid();
}
catch { }
本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)
點(diǎn)擊舉報(bào)。