前台代码:

 

 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>
View Code

相关文章:

  • 2021-09-22
  • 2022-02-07
  • 2022-12-23
  • 2021-09-14
  • 2021-05-26
  • 2022-12-23
猜你喜欢
  • 2021-07-07
  • 2021-09-23
  • 2021-06-29
  • 2021-11-11
  • 2021-09-30
  • 2021-11-01
相关资源
相似解决方案