error.jsp
来自「一套JAVA的CA证书签发系统.」· JSP 代码 · 共 31 行
JSP
31 行
<html><title>EJBCA Certificate Enroll Error</title><body><%@ page isErrorPage="true" %><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 + -
显示快捷键?