error.jsp
资源名称:NetOffice.rar [点击查看]
上传用户:guhaomin
上传日期:2007-06-10
资源大小:23203k
文件大小:1k
源码类别:
电子政务应用
开发平台:
Java
- <%
- /**
- * $RCSfile: error.jsp,v $
- * $Revision: 1.4.2.1 $
- * $Date: 2001/01/25 16:35:45 $
- */
- %>
- <%@ page
- import="java.io.*,
- java.util.*,
- com.coolservlets.forum.*,
- com.coolservlets.util.*"
- isErrorPage="true"
- %>
- <% // Get parameter values
- String message = ParamUtils.getParameter(request, "message");
- %>
- <% /////////////////
- // header include
- // Provide the header.jsp with its variables
- Authorization authToken = null;
- ForumFactory forumFactory = null;
- int forumID = -1;
- String title = "Error";
- %>
- <%@ include file="/skins/bay/header.jsp" %>
- <font face="verdana" >
- <font class="strong">错误</font>
- </font>
- <p>
- <ul>
- <li><font class="strong">
- <% if (exception != null) { %>
- 实时错误。
- <% } else { %>
- 一般错误。
- <% } %>
- </font></li>
- </ul>
- <p>
- <pre>
- <% if (exception != null) { %>
- <% StringWriter sout = new StringWriter();
- PrintWriter pout = new PrintWriter(sout);
- //exception.printStackTrace(pout);
- %>
- <%= sout.toString() %>
- <% } else { %>
- <font color="#ff0000"><%= message %></font>
- <% } %>
- </pre>
- <%@ include file="/skins/bay/footer.jsp" %>