技巧:JSP登入驗證功能的實現

來源:互聯網
上載者:User
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



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.