靜態的登錄界面的設計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><div align="center" class="style1 style2">系 統 登 錄
</div></td>
</tr>
<form action="login.jsp(SUN企業級應用的首選)" method="post">
<tr>
<td height="28"><span class="style5">用戶名</span> <input type="text" name="uid" maxlength="20" ></td></tr><br>
<tr>
<td><span class="style5">密 碼</span> <input type="password" name="upwd" maxlength="20" ></td></tr><br>
<center>
<tr><td><div align="center">
<input type="submit" value="登錄" >
<input type="reset" value="取消">
</div></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企業級應用的首選)頁面代碼如下: