博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
session退出页面
阅读量:5285 次
发布时间:2019-06-14

本文共 918 字,大约阅读时间需要 3 分钟。

简单的session退出页面,jsp:

<%@ page language="java" contentType="text/html; charset=utf-8"

    pageEncoding="utf-8"%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">   
<html>
<head>
<title>退出</title>
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">    
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->
</head>
<body>
<%
if(session.getAttribute("commName")!=null)
{
    session.removeValue("commName");
}
if(session.getAttribute("adminName")!=null){
    session.removeValue("adminName");
}
%>
<!-- response.sendRedirect("/FlowerShop/main/body.jsp"); -->
</body>
<script type="text/javascript">
    window.open('first.jsp','_top');
</script>
</html>

转载于:https://www.cnblogs.com/zrui-xyu/p/4829183.html

你可能感兴趣的文章
RPC框架调用过程详解
查看>>
Spring 面试问题 TOP 50
查看>>
条件随机场(crf)及tensorflow代码实例
查看>>
33.服务之间的调用之RPC、Restful深入理解
查看>>
Dubbo入门---搭建一个最简单的Demo框架
查看>>
降噪自编码器/稀疏自编码器/栈式自编码器
查看>>
Nginx 相关介绍(Nginx是什么?能干嘛?)
查看>>
LVS负载均衡(LVS简介、三种工作模式、十种调度算法)
查看>>
leetcode题库
查看>>
LeetCode All in One 题目讲解汇总(持续更新中...)
查看>>
leecode100热题 HOT 100(2)
查看>>
腾讯精选练习(50 题)
查看>>
leecode100热题 HOT 100
查看>>
Jave Web使用的设计模型
查看>>
精选 TOP 面试题
查看>>
2种方法实现java对象的深拷贝
查看>>
1172. 餐盘栈
查看>>
leetcode中等题
查看>>
Leetcode简单题
查看>>
leetcode难题
查看>>