error.jsp
来自「《精通JSP编程 》源代码(赵强那本) 很有用的源代码」· JSP 代码 · 共 27 行
JSP
27 行
<%@ page isErrorPage= "true" %>
<html>
<body>
<%@ include file="header.jsp" %>
<h1>We are Experiencing Technical Difficulties</h1>
<br><p><b>An error has occured that prevented the system from working properly.</b>
<br><b>1-</b> You may try to click "Back" in your browser, and try again.
<br><b>2-</b> If that doesn't work, click <a href="<%=response.encodeURL("index.jsp")%>">here</a> to go back to the login page.
<br><b>3-</b> If the problem persists, send an e-mail to the <a href="mailto:<%=application.getInitParameter("WEBMASTER_EMAIL")%>">webmaster</a>. Be sure to copy the following in your message:
<p>
<b>Error description:</b><BR>
<% if(exception == null) { %>
Unknown<BR>
<% } else { %>
<%= exception.getMessage() %><BR><BR>
Stack Trace:<BR>
<%
exception.printStackTrace(new java.io.PrintWriter(out));
%>
<% } %>
<%@ include file="footer.jsp" %>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?