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

📄 showerror.jsp

📁 Oracle的J2EE Sample
💻 JSP
字号:
<%--
 * @author  Umesh
 * @version 1.0
 *
 * Development Environment : Oracle9i JDeveloper
 * 
 * Name of the File : ShowError.jsp
 *
 * Creation/Modification History  :
 *    Umesh     02-Aug-2002      Created
 *
 * Overview of Application        :
 *
 *   This page is part of the IBFBS application.
 *   This page displays the error messages and Information Messages
 *   which occur while User executes this application. 
 *
--%>
<%-- Set Context type and characterset --%>
<%@page contentType="text/html;charset=WINDOWS-1252" language="java" %>

  <% String errorMessage = (String) request.getAttribute("ErrorMessage"); 
     String infoMessage  = (String) request.getAttribute("InfoMessage");
     if ( (errorMessage != null) && (!errorMessage.equals("")) ) {
  %>
       <table align="center" width="100%" border="1" bordercolor="#008000"
                             cellspacing="0" cellpadding="0">
         <tr>
           <td bordercolor="#FFFFEA">
             <table width="100%" border="0" cellspacing="0" cellpadding="4">
               <tr>
                 <td bgcolor="#FFFFEA" width="10%" align="right" >
                   &nbsp;&nbsp;&nbsp;&nbsp;<img src="images/error.gif"  >
                 </td>
                 <td bgcolor="#FFFFEA" align="left" >
                   <span class="errorText">
                     Error : <%= errorMessage %>
                   </span>
                 </td>
               </tr>
             </table>
           </td>
         </tr>
       </table>
<%
     } else if ( (infoMessage != null) && (!infoMessage.equals("")) ) {
%>
       <table align="center" width="100%" border="1" bordercolor="#008000"
                             cellspacing="0" cellpadding="0">
         <tr>
           <td bordercolor="#FFFFEA">
             <table width="100%" border="0" cellspacing="0" cellpadding="4">
               <tr>
                 <td bgcolor="#FFFFEA" width="10%" align="right">
                   &nbsp;&nbsp;&nbsp;&nbsp;<img src="images/warning.gif">
                 </td>
                 <td bgcolor="#FFFFEA" align="left" >
                   <span class="infoText">
                     Info : <%= infoMessage %>
                   </span>
                 </td>
               </tr>
             </table>
           </td>
         </tr>
       </table>
<%
     }
%>

⌨️ 快捷键说明

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