error.jsp

来自「Java开发的权限管理的例子」· JSP 代码 · 共 47 行

JSP
47
字号
<%@ page language="java" isErrorPage="true"  contentType="text/html;charset=UTF-8"%>
<%@ include file="/common/jsp/common.jsp"%>
<html >
<style type="text/css">
<!--
.STYLE1 {font-size: 24px}
-->
</style>
<head>
<html:base/>
<link title=Style href="../../common/css/style.css" type=text/css rel=stylesheet class="tableBorder">
<title>操作失败</title>
</head>
<body>
<br>
<center>
<table width="38%" border="0" cellspacing="0" cellpadding="0" class="tableBorder">
          <tr>
            <th>抱歉</th>
          </tr>
		  <tr>
            <td class="forumRow" align="center" ><font size="+2">出错了!</font></td>
          </tr>
          <logic:present name="errors" property="errList">
          <tr>
            <td class="forumRow"> 
         <logic:iterate id="element" name="errors" property="errList">
		  <li><bean:write name="element"/></li>
	      </logic:iterate>
         </td>
          </tr>
          </logic:present>  
      <tr>
       <td class="forumRow"> 
		 <html:errors/>
       </td>
     </tr>
          <tr>
            <td align="center" class="forumRow">
			<A href="javascript:history.go(-1)"><IMG src="../images/b_pre.gif" border="0"></A>
			</td>
          </tr>
  </table>
</center>
</body>
</html>

⌨️ 快捷键说明

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