54 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
		
		
			
		
	
	
			54 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
|  | <%@ Control Language="C#" AutoEventWireup="true" CodeFile="Pager.ascx.cs" Inherits="public_Pager" %> | ||
|  | 
 | ||
|  | 
 | ||
|  |   | ||
|  | 
 | ||
|  | <table> | ||
|  | <tr> | ||
|  | <td > | ||
|  |     <asp:ImageButton ID="btnFirst" runat="server"  | ||
|  |         ImageUrl="~/Images/btnFirst.Image.png" onclick="btnFirst_Click" />   | ||
|  | </td> | ||
|  | <td > | ||
|  |     <asp:ImageButton ID="btnPrev" runat="server"  | ||
|  |         ImageUrl="~/Images/btnPrev.Image.png"  onclick="btnPrev_Click"/> | ||
|  | </td> | ||
|  | <td>  | ||
|  |         <asp:TextBox ID="lblcurentpage" runat="server" Height="17px" Width="72px"></asp:TextBox> | ||
|  | </td> | ||
|  | <td > | ||
|  |     <asp:ImageButton ID="btnNext" runat="server"  | ||
|  |         ImageUrl="~/Images/btnNext.Image.png"   onclick="btnNext_Click"/> | ||
|  | </td> | ||
|  | <td > | ||
|  |     <asp:ImageButton ID="btnLast" runat="server"  | ||
|  |         ImageUrl="~/Images/btnLast.Image.png"   onclick="btnLast_Click"/> | ||
|  | </td> | ||
|  | 
 | ||
|  | 
 | ||
|  | <td>  | ||
|  | 
 | ||
|  | 
 | ||
|  |         <asp:Label ID="lblRecordCount" runat="server" Text="总记录"></asp:Label> | ||
|  | 
 | ||
|  | </td> | ||
|  | <td> | ||
|  |  <asp:Label ID="Label1" runat="server" Text="页数"></asp:Label> | ||
|  |  </td> | ||
|  | <td> | ||
|  | 
 | ||
|  |     <asp:DropDownList ID="cmbPagecount" runat="server"  | ||
|  |         onselectedindexchanged="cmbPagecount_SelectedIndexChanged"> | ||
|  |     </asp:DropDownList> | ||
|  | 
 | ||
|  | </td> | ||
|  | <td> | ||
|  | <asp:DropDownList ID="comPagesize" runat="server"  | ||
|  |         onselectedindexchanged="comPagesize_SelectedIndexChanged"> | ||
|  |     </asp:DropDownList> | ||
|  | </td> | ||
|  |   | ||
|  | </tr> | ||
|  | </table> | ||
|  | 
 |