errorpage.jsp
上传用户:ht0805
上传日期:2013-10-20
资源大小:384k
文件大小:1k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

Java

  1. <%@ page isErrorPage="true" contentType="text/html; charset=gb2312" language="java" import="java.io.*"  %>
  2. <HTML>
  3. <HEAD><TITLE>Output</TITLE><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></HEAD>
  4. <BODY BGCOLOR="#0099FF" text="#FFFFFF" link="#00FF00">
  5. <P align="center"><FONT COLOR="#660000" SIZE=2><B> 
  6.   <%
  7. if (exception != null) {
  8. out.print(exception.toString());
  9. } else if (request.getAttribute("problem") != null) {
  10. String str =(String) request.getAttribute("problem");
  11. // byte[] tmpbyte=str.getBytes("ISO8859_1");
  12. // str=new String(tmpbyte);
  13. %>
  14.   <%= str %> 
  15.   <% } else { %>
  16.   (No error code) 
  17.   <% } %>
  18.   </B></P>
  19. <P><B>
  20. <p> <a href="javascript:history.back();"> &lt;&lt;Back</a> </p>
  21. </B></P>
  22. </BODY>
  23. </HTML>