欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【jsp】session

程序员文章站 2022-03-14 23:47:44
...


利用session对象完成以下内容

login.jsp

完成登录表单的显示,同时想页面本身进行数据提交,以完成登录的验证,如果登录成功(用户名和密码固定:Joywy/1111),则保存属性;如果登录失败,则显示登录失败的信息。

  • login.jsp
<html>
<head><title>欢迎</title></head>
<body>
<form action="login.jsp" method="post">
	用户名:<input type="text" name="uname"><br>
	密   码:<input type="password" name="upass"><br>
	<input type="submit" name="登陆">
	<input type="reset" name="重置">
</form>
<%
	String name=(String).request.getParameter("uname");
	String password=(String).request.getParameter("upass");
	if(!(name==null || "".equals(name) || password==null || "".equals(password))){
		if("Joywy".equals(name) && "android".equals(password)){
			session.setAttribute("userid",name);
			response.setHeader("refresh","2,URL=welcome.jsp");
%>
<h3>登陆成功,即将跳转</h3>
<h3>若未跳转,点击<a href="welcome.jsp">这里</a></h3>
<%
		}else{
%>
			<h3>错误的用户名或密码!</h3>
<%
		}
	}
%>
</body>
</html>

Welome.jsp

此页面要求在用户登录完成之后才可以显示登录成功的信息,如果没有登录,则要给出未登录的提示,同时给出一个登陆的连接地址。

  • welcome.jsp
<% page contgentType="text/html" pageEncoding="GBK"%>
<html>
<head><title>欢迎</title></head>
<body>
<%
	if(session.getAttribute("userid") != null){
%>
<h3>欢迎<%=session.getAttribute("userid")%>来到<a href="logout.jsp">注销</a></h3>
<%
	}else{
%>
	<h3>请先<a href="login.jsp">登录</a></h3>
<%
	}
%>
</body>
</html>

logout.jsp

此功能完成登录的注销,注销之后,页面要跳转会login.jsp,等待用户继续登录。

  • logout.jsp
<% page contgentType="text/html" pageEncoding="GBK"%>
<html>
<head><title>欢迎</title></head>
<body>
<%
	response.setHeader("refresh","2,URL=login.jsp");
	session.invalidate();
%>
<h3>成功退出,即将返回首页</h3>	
<h3>如果没跳转,点击<a href="login.jsp">这里</a></h3>
</body>
</html>