error.jsp
上传用户:guhaomin
上传日期:2007-06-10
资源大小:23203k
文件大小:1k
源码类别:

电子政务应用

开发平台:

Java

  1. <%
  2. /**
  3.  * $RCSfile: error.jsp,v $
  4.  * $Revision: 1.4.2.1 $
  5.  * $Date: 2001/01/25 16:35:45 $
  6.  */
  7. %>
  8. <%@ page 
  9. import="java.io.*,
  10.         java.util.*,
  11. com.coolservlets.forum.*,
  12. com.coolservlets.util.*"
  13. isErrorPage="true"
  14. %>
  15. <% // Get parameter values
  16. String  message = ParamUtils.getParameter(request, "message");
  17. %>
  18. <% /////////////////
  19. // header include
  20. // Provide the header.jsp with its variables
  21. Authorization authToken = null;
  22. ForumFactory forumFactory = null;
  23. int  forumID = -1;
  24. String title = "Error";
  25. %>
  26. <%@ include file="/skins/bay/header.jsp" %>
  27. <font face="verdana" >
  28. <font class="strong">错误</font>
  29. </font>
  30. <p>
  31. <ul>
  32. <li><font class="strong">
  33. <% if (exception != null) { %>
  34. 实时错误。
  35. <% } else { %>
  36. 一般错误。
  37. <% } %>
  38. </font></li>
  39. </ul>
  40. <p>
  41. <pre>
  42. <% if (exception != null) { %>
  43. <% StringWriter sout = new StringWriter();
  44. PrintWriter pout = new PrintWriter(sout);
  45. //exception.printStackTrace(pout);
  46.     %>
  47. <%= sout.toString() %>
  48. <% } else { %>
  49. <font color="#ff0000"><%= message %></font>
  50. <% } %>
  51. </pre>
  52. <%@ include file="/skins/bay/footer.jsp" %>