前台代码:
1 <%@ Control Language="C#" AutoEventWireup="true" CodeBehind="WebPage.ascx.cs" 2 Inherits="MyUrlRewriter.WebPage" %> 3 4 <asp:Repeater ID="Repeater1" runat="server" 5 onitemdatabound="Repeater1_ItemDataBound"> 6 <HeaderTemplate> 7 <table> 8 </HeaderTemplate> 9 <ItemTemplate> 10 <asp:Literal ID="Literal4" runat="server"></asp:Literal> 11 </ItemTemplate> 12 <FooterTemplate> 13 </table> 14 </FooterTemplate> 15 </asp:Repeater> 16 第<asp:Literal ID="Literal3" runat="server" Text="1">1</asp:Literal>页 17 共<asp:Literal ID="Literal1" runat="server"></asp:Literal>条数据 18 共<asp:Literal ID="Literal2" runat="server"></asp:Literal>页 19 20 <br/> 21 <asp:LinkButton ID="firstPage" runat="server" onclick="firstPage_Click">首页</asp:LinkButton> 22 <asp:LinkButton ID="upPage" runat="server" onclick="firstPage_Click">上一页</asp:LinkButton> 23 <asp:LinkButton ID="downPage" runat="server" onclick="firstPage_Click">下一页</asp:LinkButton> 24 <asp:LinkButton ID="lastPage" runat="server" onclick="firstPage_Click">末页</asp:LinkButton> 25 <asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" 26 onselectedindexchanged="DropDownList1_SelectedIndexChanged"> 27 </asp:DropDownList> 28 29 <div id="pan1" runat="server"></div>