error.jsp
来自「JAVA做的J2EE下CA认证系统 基于EJB开发」· JSP 代码 · 共 31 行
JSP
31 行
<%@ page isErrorPage="true" %><html><title>@EJBCA@ Certificate Enroll Error</title><body><h2>@EJBCA@ Certificate Enroll Error</h2><%String isException = (String)request.getAttribute("Exception");String errMsg = (String)request.getAttribute("ErrorMessage");if ( (isException != null) && (isException.equals("true")) ) {%>An Exception occured:<hr><%}if (errMsg != null) {%><%=errMsg%><%} else {%>Unknown error, or you came to this page directly without beeing redirected.<%}%><p><a href="javascript:history.back()">Go back</a></body></html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?