forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndexTemp.jsp
More file actions
38 lines (38 loc) · 1.74 KB
/
IndexTemp.jsp
File metadata and controls
38 lines (38 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<%@ page contentType="text/html; charset=gb2312"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
String mainPage=(String)request.getAttribute("mainPage");
if(mainPage==null||mainPage.equals(""))
mainPage="default.jsp";
%>
<html>
<head>
<title>¶àýÌ岩¿Í</title>
<base href="<%=basePath%>">
<link type="text/css" rel="stylesheet" href="css/style.css">
</head>
<body>
<%--<center>
<table border="0" cellpadding="0" cellspacing="0" background="images/allBack.jpg">
<tr height="150"><td colspan="2"><%@ include file="top.jsp" %></td></tr>
<tr>
<td width="30%" valign="top" align="right"><jsp:include page="left.jsp"/></td>
<td align="left" valign="top"><jsp:include page="<%=mainPage%>"/></td>
</tr>
<tr height="100"><td colspan="2"><%@ include file="end.jsp" %></td></tr>
</table>
</center>
--%><center>
<table width="1000" cellpadding="0" cellspacing="0" background="images/allBack.jpg"
rules="rows" border="1" rules="none" cellpadding="0" cellspacing="0" bordercolor="#4E6900" bordercolordark="white" bordercolorlight="#4E6900">
<tr><td colspan="2"><%@ include file="top.jsp" %></td></tr>
<tr>
<td width="280" valign="top" align="right"><jsp:include page="left.jsp"/></td>
<td width="720" align="left" valign="top"><jsp:include page="<%=mainPage%>"/></td>
</tr>
<tr height="100"><td colspan="2"><%@ include file="end.jsp" %></td></tr>
</table>
</center>
</body>
</html>