📄 genericerror.jsp
字号:
<%@ page import="com.sslexplorer.core.CoreScript" %>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles" %>
<%@ taglib uri="/sslexplorer/taglibs/explorer" prefix="explorer" %>
<%@ taglib uri="/sslexplorer/taglibs/navigation" prefix="navigation" %>
<html>
<head>
<title><bean:message key='http.error.pageTitle' bundle="navigation" arg0="<%= String.valueOf(pageContext.getErrorData().getStatusCode()) %>"/></title>
<link type="text/css" rel="stylesheet" href='<explorer:themePath/>/style.jsp'/>
<explorer:pageScripts position="<%= String.valueOf(CoreScript.PAGE_HEADER) %>"/>
</head>
<body>
<div id="popup_content_centered_outer">
<div id="page_error">
<div class="titled_dialog_content">
<div>
<table class="titled_dialog_table">
<thead>
<tr>
<td colspan="2">
<bean:message key='<%= "http.error." + pageContext.getErrorData().getStatusCode() + ".title" %>' bundle="navigation"/>
</td>
</tr>
</thead>
<tbody>
<tr>
<td class="icon">
<bean:define id="themePath"><explorer:themePath/></bean:define>
<img src="<%= themePath + "/images/dialog/error.gif" %>"/>
</td>
<td class="text">
<table class="dialog_form_table">
<tbody>
<tr>
<td>
<div class="confirmMessage">
<bean:message key='<%= "http.error." + pageContext.getErrorData().getStatusCode() + ".description" %>' bundle="navigation"/>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -