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.
9 lines
426 B
9 lines
426 B
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
|
|
<%
|
|
String path = request.getContextPath();
|
|
String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + path + "/";
|
|
String adminid = (String) session.getAttribute("adminid");
|
|
if (adminid == null) {
|
|
response.getWriter().println("<script>top.location.href='" + basePath + "admin/index.jsp';</script>");
|
|
}
|
|
%> |