本文實(shí)例講述了JSP實(shí)現(xiàn)簡單的用戶登錄并顯示出用戶信息的方法。分享給大家供大家參考。具體實(shí)現(xiàn)方法如下:
login.jsp
復(fù)制代碼 代碼如下:
%@ page language="java" import="java.util.*" pageEncoding="GB18030"%>
%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
html>
head>
/head>
body>
form action="login_success.jsp" method = "post">
用戶名:input type ="text" name = "username"/>br>
密碼:input type = "password" name ="password">br>
input type ="submit" value="提交"/>
/form>
/body>
/html>
login_success.jsp 用于顯示用戶信息
復(fù)制代碼 代碼如下:
%@ page language="java" import="java.util.*" pageEncoding="GB18030"%>
%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
html>
head>
/head>
body>
%
String uname = request.getParameter("username");
String pwd = request.getParameter("password");
out.println(uname);
out.println(pwd);
%>
/body>
/html>
希望本文所述對大家的jsp程序設(shè)計(jì)有所幫助。
您可能感興趣的文章:- jsp+dao+bean+servlet(MVC模式)實(shí)現(xiàn)簡單用戶登錄和注冊頁面
- 使用JSP實(shí)現(xiàn)簡單的用戶登錄注冊頁面示例代碼解析
- jsp實(shí)現(xiàn)用戶自動登錄功能
- jsp實(shí)現(xiàn)簡單用戶7天內(nèi)免登錄
- servlet+jsp實(shí)現(xiàn)過濾器 防止用戶未登錄訪問
- JSP Spring防止用戶重復(fù)登錄的實(shí)現(xiàn)方法
- JavaWeb實(shí)現(xiàn)用戶登錄注冊功能實(shí)例代碼(基于Servlet+JSP+JavaBean模式)
- JSP實(shí)現(xiàn)用戶登錄、注冊和退出功能
- jsp基于XML實(shí)現(xiàn)用戶登錄與注冊的實(shí)例解析(附源碼)
- 在jsp中用bean和servlet聯(lián)合實(shí)現(xiàn)用戶注冊、登錄
- 關(guān)于JSP用戶登錄連接數(shù)據(jù)庫詳情