34 lines
1.0 KiB
Plaintext
34 lines
1.0 KiB
Plaintext
|
|
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
|
||
|
|
|
||
|
|
<%
|
||
|
|
String path = request.getContextPath();
|
||
|
|
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
|
||
|
|
%>
|
||
|
|
|
||
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
|
||
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
|
|
<head>
|
||
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||
|
|
|
||
|
|
<base href="<%=basePath%>">
|
||
|
|
|
||
|
|
<title>My JSP 'index.jsp' starting page</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>
|
||
|
|
<script type="text/javascript">
|
||
|
|
function onload(){
|
||
|
|
top.location="<%=path%>/login.jsp";
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
<body onload="onload();">
|
||
|
|
|
||
|
|
</body>
|
||
|
|
</html>
|