⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 error.jsp

📁 《精通JSP编程 》源代码(赵强那本) 很有用的源代码
💻 JSP
字号:
<%@ 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -