?? error.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>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -