純JSP實現的簡單登入樣本_JSP編程

來源:互聯網
上載者:User

本文執行個體講述了純JSP實現的簡單登入的方法。分享給大家供大家參考,具體如下:

檔案共有四個web.xml、login.jsp、logout.jsp、welcome.jsp四個檔案

測試環境:Tomcat 6.0.x

假設項目名稱是LoginSample,我的目錄結構是這樣的

...\webapps\LoginSample\WEB-INF\web.xml
...\webapps\LoginSample\login.jsp
...\webapps\LoginSample\logout.jsp
...\webapps\LoginSample\welcome.jsp

web.xml源碼清單:

<web-app xmlns="http://java.sun.com/xml/ns/j2ee"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"version="2.4">  <welcome-file-list>    <welcome-file>welcome.jsp</welcome-file>  </welcome-file-list></web-app>

login.jsp源碼清單:

<%@ page contentType="text/html;charset=UTF-8" %><html> <head>  <title>JSP簡單登入執行個體</title> </head> <body> <h2>請登入</h2> <form method="POST" >  Login Name: <input type="text" name="Name"><br>  Login Password: <input type="text" name="Password" ><br>  <input type="submit" value="Send"><br> <form> <%   if (request.getParameter("Name") != null       && request.getParameter("Password") != null) {     String Name = request.getParameter("Name");     String Password = request.getParameter("Password");     if (Name.equals("a") && Password.equals("a")) {       session.setAttribute("Login", "OK");       session.setAttribute("myCount", new Integer(1));       response.sendRedirect("welcome.jsp");     }     else {       %>       登入失敗:使用者名稱或密碼不正確~       <%     }   }%> </body></html>

logout.jsp源碼清單:

<%@ page contentType="text/html;charset=UTF-8" %><html> <%  session.setAttribute("Login", ""); %> <body> <h2>你已經退出登入</h2> </body></html>

welcome.jsp源碼清單:

<%@ page contentType="text/html" pageEncoding="UTF-8" import="java.util.*"%><html> <body> <h2>歡迎頁面(測試session)</h2> <% String Login = (String)session.getAttribute("Login"); int   nCount=0; if (Login != null && Login.equals("OK")) {   Integer myCount = (Integer)session.getAttribute("myCount");   if(myCount!=null)   {     nCount = myCount.intValue();     nCount = nCount + 1;     session.setAttribute("myCount",new Integer(nCount));   }   %>   登入成功,myCount=<%=nCount%></br>   <input type=button value="退出" onclick="javascript:location.href='logout.jsp'">   <% } else {%>   <jsp:forward page="login.jsp"/><%  }  %>  </body></html>

希望本文所述對大家JSP程式設計有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.