forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.jsp
More file actions
33 lines (33 loc) · 1.12 KB
/
error.jsp
File metadata and controls
33 lines (33 loc) · 1.12 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
<%@ page contentType="text/html; charset=GBK" %>
<html>
<head>
<title>用户登录</title>
</head>
<link href="css/css.css" rel="stylesheet" type="text/css">
<script src="js/validate.js"></script>
<body bgcolor="#ffffff" onLoad="clockon(bgclock)">
<table width="630" border="0" cellspacing="0" cellpadding="0" class="tableBorder6">
<tr>
<td height="165"><jsp:include page="top.jsp"/></td>
</tr>
<tr>
<td height="50" align="left" ><h1>error</h1></td>
</tr>
<tr>
<td height="260" align="center" valign="middle" class="Redfont">
<% String error=session.getAttribute("error").toString();
if(error!=null){
out.print(error);
}else{
out.print("未知错误!!!");
}%></td>
</tr>
<tr>
<td height="50" align="center" valign="middle"><a style="cursor:hand" onClick="javascript:history.back();" class="delink">返回上页</a> <a style="cursor:hand" onClick="javascrip:window.close();" class="delink">关闭窗口</a></td>
</tr>
<tr>
<td align="center"><jsp:include page="bottom.jsp"/></td>
</tr>
</table>
</body>
</html>