📄 login.jsp
字号:
<%@ include file="../conn.jsp"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta http-equiv="Content-Language" content="zh-cn">
<link rel="stylesheet" href="../inc/index.css" type="text/css">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>天天人才—>人才市场—>管理登录</title>
</head>
<form action=login.jsp method=post>
<body topmargin="0" leftmargin="0">
<div align="center">
<center>
<table border="0" cellpadding="0" cellspacing="0" width="780" height="390">
<tr>
<td width="413" height="10" valign="top"></td>
</tr>
</center>
<tr>
<td valign="top" height="380">
<div align="center">
<center>
<table border="1" cellpadding="0" cellspacing="0" width="202" height="132" bordercolor="#000000" bordercolorlight="#000000" bordercolordark="#FFFFFF">
<tr>
<td height="17" width="198" background="../images/t-bg1.gif" valign="bottom">
<p align="center">=== 管理员登录 ===</td>
</tr>
</center>
<tr>
<td height="113" width="198" bgcolor="#fffff4">
<p align="center"><br>
账 号:<input type="text" name="admin" size="15" maxLength=15 style="font-family: 宋体; color: #000060; font-size: 9pt"><br>
<br>
密 码:<input type="password" name="pwd" size="15" maxLength=15 style="font-family: 宋体; color: #000060; font-size: 9pt"> </p>
<center>
<p><input type="submit" value="登 录" name="B1" style="font-family: 宋体; font-size: 9pt; height: 19; position: relative"><br>
<br>
</center></td>
</tr>
</table>
</div>
<p>
</td>
</tr>
</table>
</div>
</body>
</html>
<% request.setCharacterEncoding("GB2312");
String admin=request.getParameter("admin");
if(admin!=null)
{
String pwd=request.getParameter("pwd");
String sql="select * from scott.admin where admin='"+admin+"' and pwd='"+pwd+"'";
ResultSet rs=stmt.executeQuery(sql);
if(!rs.next()){
%>
<SCRIPT language=JavaScript>
alert('错误的用户或名密码,请重新输入!');
javascript:history.go(-1)
</SCRIPT>
<%}else{
session.putValue("flag",admin);
response.sendRedirect("mnews.jsp");
}
}%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -