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

电子政务应用

开发平台:

Java

  1. <%
  2. /**
  3.  * $RCSfile: error.jsp,v $
  4.  * $Revision: 1.3 $
  5.  * $Date: 2000/12/18 02:06:21 $
  6.  */
  7. %>
  8. <%@ page isErrorPage="true" %>
  9. <%@ page import="java.util.*,
  10.                  java.net.*,
  11.                  com.coolservlets.forum.*,
  12.                  com.coolservlets.forum.util.*,
  13.  com.coolservlets.forum.util.admin.*"
  14. %>
  15. <% //////////////////
  16. // get parameters
  17. String errorMessage = ParamUtils.getParameter(request,"msg");
  18. %>
  19. <html>
  20. <head>
  21. <title></title>
  22. <link rel="stylesheet" href="style/global.css">
  23. </head>
  24. <body background="images/shadowBack.gif" bgcolor="#ffffff" text="#000000" link="#0000ff" vlink="#800080" alink="#ff0000">
  25. <% ///////////////////////
  26. // pageTitleInfo variable (used by include/pageTitle.jsp)
  27. String[] pageTitleInfo = { "错误" };
  28. %>
  29. <% ///////////////////
  30. // pageTitle include
  31. %><%@ include file="include/pageTitle.jsp" %>
  32. <p>
  33. <% if( errorMessage != null ) { %>
  34. 错误信息:<%= errorMessage %>
  35. <% } else { %>
  36. <% String message = exception.getMessage(); %>
  37. <% if( message == null ) { %>
  38. <% message = ""; %>
  39. <% } %>
  40. <% if( exception instanceof UnauthorizedException ) { %>
  41. 您没有权限进行此项操作。
  42. <% } else { %>
  43. 一般错误异常。 (exception: <%= exception %>)
  44. <% } %>
  45. <% } %>
  46. <% exception.printStackTrace(); %>
  47. </body>
  48. </html>