JAVAEE-based-parking-manage.../tingchechang/WebContent/admin/quanxian_list.jsp

115 lines
3.2 KiB
Plaintext
Raw Normal View History

2023-04-26 13:50:08 +00:00
<%@ page language="java" contentType="text/html; charset=GB18030"
pageEncoding="GB18030" import="java.sql.*"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<jsp:useBean id="yonghu" class="com.DB" scope="page" />
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
<link href="../css/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<table width="985" height="548" border="0" cellpadding="0"
cellspacing="0">
<tr>
<td valign="top" background="../image/RIGHT.jpg"><table
width="985" height="50" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>&nbsp;</td>
</tr>
</table>
<table width="666" border="0" align="center" cellpadding="0"
cellspacing="0">
<tr>
<td width="144" height="30" align="center" bgcolor="#F0F0F0"><3E>˻<EFBFBD></td>
<td width="163" align="center" bgcolor="#F0F0F0"><3E><><EFBFBD>ƺ<EFBFBD></td>
<td width="122" align="center" bgcolor="#F0F0F0"><3E><><EFBFBD><EFBFBD></td>
<td width="164" align="center" bgcolor="#F0F0F0">Ȩ<><C8A8></td>
<td width="73" align="center" bgcolor="#F0F0F0"><3E><><EFBFBD><EFBFBD>Ȩ<EFBFBD><C8A8></td>
</tr>
<%
int CountPage = 0;
int CurrPage = 1;
int PageSize = 12;
int CountRow = 0;
String StrPage = request.getParameter("Page");
if (StrPage == null)
{
CurrPage = 1;
}
else
{
CurrPage = Integer.parseInt(StrPage);
}
Connection con=yonghu.getCon();
if (con != null)
{
try
{
String sqlyy = "Select * from reg ";
ResultSet rs=yonghu.GetRs(sqlyy);
if(!rs.next())
{
out.println("<22>Բ<EFBFBD><D4B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱû<CAB1><C3BB><EFBFBD><EFBFBD>Ϣ");
}
else{
rs.last();
int i = 0;
CountRow = rs.getRow();
CountPage = (CountRow/PageSize);
if (CountRow%PageSize>0)
CountPage++;
Integer n = (CurrPage-1)*5+1;
rs.first();
rs.absolute(CurrPage*PageSize-PageSize+1);
while (i<PageSize && !rs.isAfterLast())
{
%>
<tr>
<td height="25" width="144" align="center"><%=rs.getString("username")%></td>
<td align="center" width="163"><%=rs.getString("chepaihao")%></td>
<td align="center" width="122"><%=rs.getString("truename")%></td>
<td align="center" width="164"><%=rs.getString("quanxian")%></td>
<td align="center"><a
href="biangeng.jsp?username=<%=rs.getString("username")%>"><3E><><EFBFBD><EFBFBD>Ȩ<EFBFBD><C8A8></a></td>
</tr>
<%
rs.next();
i++;
}
}
}
catch (SQLException e)
{
out.println(e.getMessage());
}
finally
{
con.close();
}
}
%>
</table>
<table width="700" height="53" border="0" cellpadding="0"
cellspacing="0">
<tr>
<td width="205" height="53" align="center">[<%=CurrPage%>/<%=CountPage %>]
ÿҳ<%=PageSize %><3E><> <20><><%=CountRow%><3E><><EFBFBD><EFBFBD>¼
</td>
<td width="495" align="left">
<div align="left">
<% for (int i = 1;i<=CountPage;i++){%>
<a href="quanxian_list.jsp?Page=<%=i%>">[<%=i%>]
</a>
<%}%>
</div>
</td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>