JSP实现简单的用户登录并显示出用户信息的方法
更新时间:2015年02月05日 10:39:48 作者:Bo年再无木小白
这篇文章主要介绍了JSP实现简单的用户登录并显示出用户信息的方法,通过简单的登陆及登陆显示页面实现这一功能,具有一定参考借鉴价值,需要的朋友可以参考下
本文实例讲述了JSP实现简单的用户登录并显示出用户信息的方法。分享给大家供大家参考。具体实现方法如下:
login.jsp
复制代码 代码如下:
<%@ 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>
<%
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 用于显示用户信息
复制代码 代码如下:
<%@ 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>
<%
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程序设计有所帮助。
相关文章
深入浅析Jsp中 out.print 和 out.write 的区别
本文简明扼要的给大家介绍了jsp中 out.print 和 out.write 的区别,虽然本文简短但是主要内容给大家介绍清楚了,需要的朋友参考下吧2017-02-02Hibernate save() saveorupdate()的用法
在Hibernate中,最核心的概念就是对PO的状态管理。2008-11-11JAVA (Jsp)利用Google的Translate开发API的代码
上次我说了用ASP,PHP,C#分别实现Google的Translate开发一个API ( Tags:Google Translate API )2008-12-12在 Linux 上安装Apache+ApacheJServ+JSP
在 Linux 上安装Apache+ApacheJServ+JSP...2006-10-10
最新评论