showerror.jsp

来自「Oracle的J2EE Sample」· JSP 代码 · 共 70 行

JSP
70
字号
<%--
 * @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 + =
减小字号Ctrl + -
显示快捷键?