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

161 lines
4.6 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="gg" class="com.DB" scope="page" />
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
<script language="javascript">
function check(){
if(form1.chepaihao.value==""){
alert("<22><><EFBFBD><EFBFBD>ƺ<EFBFBD>");form1.chepaihao.focus();return false;
} }
</script>
<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>
<form id="form1" name="form1" method="post"
action="weigui_add_chuli.jsp" onSubmit="return check()">
<table width="493" border="0" align="center" cellpadding="0"
cellspacing="0">
<tr>
<td height="30" colspan="2" align="center">Υ<><CEA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD></td>
</tr>
<tr>
<td width="40">&nbsp;</td>
<td width="945" height="25"><3E>û<EFBFBD><C3BB>˻<EFBFBD><CBBB><EFBFBD> <input name="username"
type="text" id="username" /></td>
</tr>
<tr>
<td width="40">&nbsp;</td>
<td width="945" height="25"><3E><><EFBFBD>ƺ<EFBFBD><C6BA>룺 <input name="chepaihao"
type="text" id="chepaihao" /></td>
</tr>
<tr>
<td width="40">&nbsp;</td>
<td width="945" height="25"><3E><><EFBFBD><EFBFBD>״̬<D7B4><CCAC> <input name="states"
type="text" id="states" value="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" readonly="true" /></td>
</tr>
<tr>
<td width="40">&nbsp;</td>
<td width="945" height="25">Υ<><CEA5>˵<EFBFBD><CBB5><EFBFBD><EFBFBD> <textarea name="shuoming"
cols="40" rows="3" id="shuoming"></textarea></td>
</tr>
<tr>
<td>&nbsp;</td>
<td height="35">&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <input
type="submit" name="Submit" value="<22><><EFBFBD><EFBFBD>" /> &nbsp;&nbsp; <input
type="reset" name="Submit2" value="<22><><EFBFBD><EFBFBD>" />
</td>
</tr>
</table>
</form>
<table width="873" height="40" border="0" align="center"
cellpadding="0" cellspacing="0">
<tr>
<td width="145" align="center" bgcolor="#ECE9D8"><3E><><EFBFBD>ƺ<EFBFBD><C6BA><EFBFBD></td>
<td width="124" align="center" bgcolor="#ECE9D8"><3E><>ǰ״̬</td>
<td width="446" align="center" bgcolor="#ECE9D8"><3E><>Ҫ˵<D2AA><CBB5></td>
<td width="100" align="center" bgcolor="#ECE9D8"><3E>û<EFBFBD><C3BB><EFBFBD></td>
<td width="58" align="center" bgcolor="#ECE9D8">ɾ<><C9BE></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=gg.getCon();
if (con != null)
{
try
{
String sqlyy = "Select * from weigui ";
ResultSet rs=gg.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 align="center"><%=rs.getString("chepaihao")%></td>
<td align="center"><%=rs.getString("states")%></td>
<td align="center"><%=rs.getString("shuoming")%></td>
<td align="center"><%=rs.getString("username")%></td>
<td align="center"><a
href="../Wg_delServlet?id=<%=rs.getString("id")%>">ɾ<><C9BE></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="weigui_mg.jsp?Page=<%=i%>">[<%=i%>]
</a>
<%}%>
</div>
</td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>