web用户退出清空网页缓存

来源:互联网 发布:java会议室预定系统 编辑:程序博客网 时间:2024/04/30 02:06

直接上代码了

<%@ page language="java" contentType="text/html; charset=utf-8"    pageEncoding="utf-8"%><%    response.setHeader("Cache-Control","no-cache");     response.setHeader("Pragma","no-cache");     response.setDateHeader ("Expires", 0);     String user = (String) session.getAttribute("user");    if (user == null || user.length() <= 0) {%><script type="text/javascript" language="javascript">    alert("您还没有登录,请先登录网站");    window.document.location.href = "index.jsp";</script><%    }%><!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></body></html>
1 0