通过浏览器对象response传值的使用,创建\赋值及注销 代码

本文详细介绍了如何在Web开发中利用浏览器对象Response进行值的传递,包括创建、赋值以及注销的过程,主要涉及session、servlet和jsp技术。
摘要由CSDN通过智能技术生成

通过浏览器对象response传值的使用,创建\赋值及注销

//登录成功
response.sendRedirect("/success.jsp");


<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>欢迎页面</title>
</head>
<body>
<%
//从Request获取id、pwd、name的值
String id= request.getParameter("id");
String pwd= request.getParameter("pwd");
String name= request.getParamete("name");
//获取Session对象
String path = request.getContextPath();
HttpSession session=request.getSession();
//向Session对象内放属性
session.setAttribute("id", id);
session.setAttribute("pwd", pwd);
session.setAttribute("name", name);
//页面输出
out.println("<span>欢迎"+name+"登录</span>");  
//注销链接
<a href="out.jsp">注销</a>
%>
</body>
</html>


注销页面(out.jsp)如下:
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<%
//获取Session对象
String path = request.getContextPath();
HttpSession session=request.getSession();
//清空Session中的登录信息相关属性
	session.removeAttribute("id");
	session.removeAttribute("pwd");
   	session.removeAttribute("name");
//上下文路径
String path = request.getContextPath();
//重定向到首页(未登录状态)
response.sendRedirect(path+"/index.jsp");
%>
</body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值