JSP登录验证功能的实现
静态的登录界面的设计login.htm,代码如下:
<html>
<head>
<title>系统登录</title>
<style type="text/css">...
<!--
.style1 {...}{
font-size: 18px;
font-weight: bold;
}
.style2 {...}{font-size: 24px}
.style5 {...}{font-size: 16px}
-->
</style>
</head>
<body bgcolor="papayawhip" width="300" height="300">
<center>
<table border="2" bordercolor="black" bgcolor="lightgreen">
<tbody>
<tr>
<td><p align="center" class="style1 style2">系 统 登 录
</p></td>
</tr>
<form action="login.jsp(SUN企业级应用的首选)" method="post">
<tr>
<td height="28"><span class="style5">用户名</span> <input type="text" name="uid" maxlength="20" style="width:150"></td></tr><br>
<tr>
<td><span class="style5">密 码</span> <input type="password" name="upwd" maxlength="20" style="width:150"></td></tr><br>
<center>
<tr><td><p align="center">
<input type="submit" value="登录" >
<input type="reset" value="取消">
</p></td></tr>
</center>
</form>
</tbody>
</table>
</center>
</body>
</html>
将登录用户输入的信息提交到login.jsp(SUN企业级应用的首选)页面机型处理,这里为了方便,不执行数据库的访问操作,直接使用sky2098作为登录用户名和密码,但在实际中是要从数据库中读取的,该jsp(SUN企业级应用的首选)页面代码实现如下:
<%...@ page contentType="text/html;charset=GB2312"%>
<%...
if(request.getParameter("uid").equals("sky2098")&&request.getParameter("upwd").equals("sky2098")){
session.setAttribute("login","ok");
session.setMaxInactiveInterval(-1);
%>
<jsp(SUN企业级应用的首选):forward page="main.jsp(SUN企业级应用的首选)"/>
<%...
}else{
out.println("用户名或密码输入错误!");
}
%>
如果登录成功,则设定login的值为ok,提交到下一步验证页面,则进入main.jsp(SUN企业级应用的首选)页面,否则,如果输入的用户名和密码不合法就打印错误信息,main.jsp(SUN企业级应用的首选)页面代码如下:
下一篇: 大数据环境下决策树算法并行化研究