静态的登录界面的设计login.htm,代码如下:
<html>
<tête>
<title>系统登录</title>
<style type="text/css">...
<!--
.style1 {...}{
taille de police : 18 px ;
poids de la police : gras ;
}
.style2 {...}{taille de police : 24 px}
.style5 {...}{taille de police : 16 px}
-->
</style>
</tête>
<body bgcolor="papayawhip" width="300" height="300">
<centre>
<table border="2" bordercolor="black" bgcolor="lightgreen">
<corps>
<tr>
<td><div align="center" class="style1 style2">系 统 登录
</div></td>
</tr>
<form action="login.jsp" 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>
<centre>
<tr><td><div align="center">
<input type="submit" value="登录" >
<input type="reset" value="取消">
</div></td></tr>
</centre>
</form>
</tbody>
</table>
</centre>
</corps>
</html>
将登录用户输入的信息提交到login.jsp页面机型处理,这里为了方便,不执行数据库的访问操作,直接使用sky2098作为登录用户名和密码,但在实际中是要从数据库中读取的,该jsp页面代码实现如下:
<%...@ 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:forward page="main.jsp"/>
<%...
}autre{
out.println("用户名或密码输入错误!");
}
% >
名和密码不合法就打印错误信息,main.jsp页面代码如下:
<%...@ page contentType="text/html;charset=GB2312"%>
<%...@include file="checkvalid.jsp" %>
<html>
<tête>
<title>~BIENVENUE SUR MA PAGE D'ACCUEIL~</title>
</tête>
<corps>
<centre>
~BIENVENUE SUR MA PAGE D'ACCUEIL~
</centre>
</corps>
</html>
这个页面使用<% @ include file="checkvalid.jsp" %>包含了一个jsp页面checkvalid.jsp为了验证输入信息的合法性:
<%...
if(session.getAttribute("login")==null||!session.getAttribute("login").equals("ok")){
réponse.sendRedirect("login.htm");
}
%>
如果输入信息有误,则回到登录页面,重新输入登录信息。
L'URL de
Tomcat est basée sur l'URL suivante :