errorpage.jsp

来自「基于jsp的物流信息管理系统」· JSP 代码 · 共 42 行

JSP
42
字号
<%@ 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">&nbsp;</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">&nbsp;</td>
  </tr>
  <tr>
    <td height="32" class="errorstyle">&nbsp;</td>
  </tr>
</table> 
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?