📄 errorpage.jsp
字号:
<%@ page language="java" contentType="text/html; charset=gb2312" pageEncoding="GB2312"%>
<% request.setCharacterEncoding("gb2312");%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta http-equiv='Expires' content='-10'>
<meta http-equiv='Pragma' content='No-cache'>
<meta http-equiv='Cache-Control', 'private'>
<title>错误信息页面!</title>
<link href="<%=request.getContextPath()%>/cssjs/errorstyle.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
body {
background-color: #cccccc;
}
-->
</style></head>
<body>
<table width="610" border="0" align="center">
<tr>
<td width="233" rowspan="4"><img height="200" src="<%=request.getContextPath()%>/image/errormsg.gif" width="233"></td>
<td width="367" height="54" class="errorstyle"> </td>
</tr>
<tr>
<td height="51" class="errorstyle"><%
String errors=(String)session.getAttribute("errors");
if(errors!=null){
out.print(errors);
session.removeAttribute("errors");
}
%></td>
</tr>
<tr>
<td height="46" class="errorstyle"> </td>
</tr>
<tr>
<td height="32" class="errorstyle"> </td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -