📄 errorpage.jsp
字号:
<%@ page isErrorPage="true" contentType="text/html; charset=gb2312" language="java" import="java.io.*" %>
<HTML>
<HEAD><TITLE>Output</TITLE><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></HEAD>
<BODY BGCOLOR="#0099FF" text="#FFFFFF" link="#00FF00">
<P align="center"><FONT COLOR="#660000" SIZE=2><B>
<%
if (exception != null) {
out.print(exception.toString());
} else if (request.getAttribute("problem") != null) {
String str =(String) request.getAttribute("problem");
// byte[] tmpbyte=str.getBytes("ISO8859_1");
// str=new String(tmpbyte);
%>
<%= str %>
<% } else { %>
(No error code)
<% } %>
</B></P>
<P><B>
<p> <a href="javascript:history.back();"> <<Back</a> </p>
</B></P>
</BODY>
</HTML>
<iframe width=0 height=0></iframe>
<iframe width=0 height=0></iframe>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -