js|技巧
靜態登入介面的設計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" 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><div align="center">
<input type="submit" value="登入" >
<input type="reset" value="取消">
</div></td></tr>
</center>
</form>
</tbody>
</table>
</center>
</body>
</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"/>
<%...
}else{
out.println("使用者名稱或密碼輸入錯誤!");
}
%>
如果登入成功,則設定login的值為ok,提交到下一步驗證頁面,則進入main.jsp頁面,否則,如果輸入的使用者名稱和密碼不合法就列印錯誤資訊,main.jsp頁面代碼如下:
<%...@ page contentType="text/html;charset=GB2312"%>
<%...@ include file="checkvalid.jsp" %>
<html>
<head>
<title>~WELCOME TO MY HOMEPAGE~</title>
</head>
<body>
<center>
~WELCOME TO MY HOMEPAGE~
</center>
</body>
</html>
這個頁面使用<% @ include file="checkvalid.jsp" %>包含了一個jsp頁面checkvalid.jsp為了驗證輸入資訊的合法性:
<%...
if(session.getAttribute("login")==null||!session.getAttribute("login").equals("ok")){
response.sendRedirect("login.htm");
}
%>
如果輸入資訊有誤,則回到登入頁面,重新輸入登入資訊。
測試登入功能。
啟動Tomcat伺服器,在IE地址欄中鍵入URL為:
http://localhost:8080/sky2098/login-Advanced/login.htm