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
24 lines (23 loc) · 868 Bytes
/
error.jsp
File metadata and controls
24 lines (23 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
<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" bgcolor="#EEEEEE">
<tr>
<td align="center"><table width="350" height="192" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="388" align="center" background="Images/error.jpg"> 错误提示信息: ${error} <br>
<br>
<input name="Submit" type="submit" class="btn_grey" value="返回" onClick="history.back(-1)"></td>
</tr>
</table></td>
</tr>
</table>
<center>
</center>
</body>
</html>