Files
VANTEN/WebRoot/JSPhandle/logout.jsp
2017-10-29 22:55:28 +08:00

10 lines
355 B
Plaintext

<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<%
session.removeAttribute("actualuser");
out.println("<script>window.location.href='../index.html'</script>");
%>