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

📄 error.jsp

📁 学生注册— 本模块允许新的学生创建和维护他们的帐户信息
💻 JSP
字号:
<%-- JSP container forwards request to this jsp, if any exceptions in processing --%>
<html>
   <head><title> URS's Error page </title></head>
   <body>
<%@ page isErrorPage="true" %>

<% if (exception != null) { %>
<p> The following exception was thrown: 
<p> <%= exception %>
<p> The stack trace is as follows:
<%
    ByteArrayOutputStream str = new ByteArrayOutputStream();
    exception.printStackTrace(new PrintStream(str));
    out.print(str);
   }
%>
<p>Please click here to return to <a href="/ursday21ex/">main page</a>
   </body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -