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

📄 erroradminmanagement.jsp

📁 Oracle的J2EE Sample
💻 JSP
字号:
<%--
 * @author  Elangovan
 * @version 1.0
 *
 * Development Environment        : Oracle9i JDeveloper
 * 
 * Name of the File               : ErrorAdminManagement.jsp
 *
 * Creation/Modification History  :
 *    Elangovan     26-Apr-2002      Created
 *
 * Overview of Application        :
 *
 *   This page is part of the IBFBS application.
 *   This page displays the exceptions which occur while executing java code.
 *   If the exception raised is AdminHelperException, the controller 
 *   servlet maps the exception using the entries in Exception.xml to this page 
 *   and displays the exception along with the stack trace.
 *
--%>

<%@ page language="java" %>
<%@ page contentType="text/html;charset=WINDOWS-1252" isErrorPage="true" %>
<%@page import="java.io.PrintWriter" %>

<html>
<head>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1252">
<link rel="stylesheet" href="includes/contents.css" type="text/css">
<title>OTN Financial Brokerage System : Admin Management Error Page</title>
</head>
<body bgcolor="#FFFFEA">
<%
  if (exception == null)
     exception = new Exception("Exception UNAVAILABLE: Tracing Stack...");
%>

  <table align="center" width="90%" border="0" cellspacing="0" cellpadding="0">
    <tr>
      <td width="100%"><HR></td>
    </tr>
    <tr>
      <td height="20%" valign="top">
        <table width="100%" border="0" cellspacing="0" cellpadding="4">
          <tr>
            <td bgcolor="#008000" height="20%" width="100%">
               <span class="errorHead">Error in Admin Management :</span>
             </td>
          </tr>
          <tr>
            <td height="80%" bgcolor="#FFFFEA">
               <span class="errorText">
                 <%= exception.toString() %>
               </span>
               <br><br>
               <font color="#FF0000">
                 Stack Trace : <br>
                 <% exception.printStackTrace(new PrintWriter(out)); %>
               </font>
            </td>
          </tr>
        </table>
      </td>
    </tr>
    <tr>
      <td width="100%"><HR></td>
    </tr>
    <tr>
      <td align="center" width="100%"><img src="images/back.gif" alt="Go Back" 
             onMouseUp="history.go(-1);"></td>
    </tr>
  </table>
</body>
</html>

⌨️ 快捷键说明

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