1 <%@ page contentType="text/html" pageEncoding="UTF-8"%>
2 <%
3 String path = request.getContextPath();
4 String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
5 %>
6
7 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
8 <html>
9 <head>
10 <base href="<%=basePath%>">
11
12 <title>学生期末成绩信息管理系统</title>
13
14 <meta http-equiv="pragma" content="no-cache">
15 <meta http-equiv="cache-control" content="no-cache">
16 <meta http-equiv="expires" content="0">
17 <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
18 <meta http-equiv="description" content="This is my page">
19 <!--
20 <link rel="stylesheet" type="text/css" href="styles.css">
21 -->
22
23 </head>
24
25
26 <frameset rows="80,*">
27 <frame src="main_title.jsp" scrolling="no">
28 <frameset cols="140,*">
29 <frame src="main_stu_left.jsp" scrolling="no">
30 <frame src="main_stu_right.jsp" name="right" scrolling="no">
31 </frameset>
32 </frameset>
33 <body>
34
35 </body>
36 </html>