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
31 lines (30 loc) · 1.06 KB
/
error.jsp
File metadata and controls
31 lines (30 loc) · 1.06 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
<%@ page contentType="text/html; charset=gb2312" language="java"%>
<%
String error=(String)request.getAttribute("error");
%>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>错误提示</title>
<link href="Css/style.css" rel="stylesheet">
</head>
<body>
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="center"><table width="419" height="226" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="center" background="images/error.jpg"><table width="388" height="194" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="center"><img src="images/error_b.gif" width="31" height="31"> 错误提示信息: <%=error%> <br>
<br>
<input name="Submit" type="submit" class="btn_grey" value="返回" onClick="history.back(-1)"></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table>
<center>
</center>
</body>
</html>