📄 err.jsp
字号:
<html>
<head>
<title>出错</title>
<style type="text/css">
<!--
.bg { background-attachment: fixed; background-image: url(../img/pic.jpg); background-repeat: no-repeat; background-position: center center}
-->
</style>
</head>
<body bgcolor=#949b93>
<%! String t; %>
<%
if (request.getParameter("errString")!=null)
t = request.getParameter("errString");
else
t = "请与供应商联系";
%>
<center>
<table width="100%" border="1" height="100%" cellspacing="0" cellpadding="0" align="center" bordercolorlight="#616860" bordercolordark="#CCCCCC" bgcolor="#4c7171" >
<tr height="90%" >
<td>
<div align="center">
<table width="88%" height="100%" border="0">
<tr>
<td height="80%" class="bg">
<div align="center">
<p> </p>
<p> </p>
<p><b><%=t%>
<input type="button" value="继续" onClick="history.back();" name="button">
</b></p>
</div>
</td>
</tr>
<tr>
<td height="20%">
<div align="center"><img src="../img/err_d.jpg" align="absbottom" width="246" height="36"></div>
</td>
</tr>
</table> </div>
</td>
</tr>
</table>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -