?? 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 + -