我是靠谱客的博主 热心草莓,这篇文章主要介绍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>


 

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>


 

最后

以上就是热心草莓最近收集整理的关于JSP实现简单的用户登录,并显示出用户的信息的全部内容,更多相关JSP实现简单内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(144)

评论列表共有 0 条评论

立即
投稿
返回
顶部