You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
499 B
29 lines
499 B
5 months ago
|
<%@ page language="java" pageEncoding="gb2312"%>
|
||
|
<%
|
||
|
String path = request.getContextPath();
|
||
|
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
|
||
|
%>
|
||
|
|
||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||
|
<html>
|
||
|
<head>
|
||
|
<base href="<%=basePath%>">
|
||
|
|
||
|
<title>My JSP 'adminyanzheng.jsp' starting page</title>
|
||
|
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<%
|
||
|
|
||
|
|
||
|
session.invalidate();
|
||
|
response.sendRedirect("index.jsp");
|
||
|
|
||
|
|
||
|
%>
|
||
|
</body>
|
||
|
</html>
|
||
|
|