AccountEdit.jsp
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:2k
源码类别:

Java编程

开发平台:

Java

  1. <%-- Page Directives --%>
  2. <%@ page session="false" errorPage="Error.jsp" import="bible.jsp.*"%>
  3. <%-- Bean Tags  --%>
  4. <jsp:useBean id="account" class="bible.jsp.AccountBean" scope="request"/>
  5. <jsp:setProperty name="account" property="*" />
  6. <%  // Test Mode
  7. if ("true".equals(request.getParameter("testmode"))) {
  8.   account.setTestData(); // Create test data
  9. } %>
  10. <html>
  11. <head>
  12. <title>Edit Account Information</title>
  13. <link href="jsp.css" type=text/css rel=stylesheet>
  14. </head>
  15. <body>
  16. <%@ include file="Header.jsp" %>
  17.   <form action="AccountEdit.jsp" method="get" name="prompt" id="prompt">
  18.     <table cellSpacing=1 cellPadding=0 border=0 width="100%">
  19.       <tr>
  20.         <td colspan=2 class="sectionTitle">Edit Account Information</td>
  21.       </tr>
  22.       <tr>
  23.         <td class="columnHead" align=right width="20%">Account Number: </td>
  24.         <td><input type="hidden" name="accountNumber" size="9" maxlength="9" 
  25.           value="<jsp:getProperty name="account" property="accountNumber"/>">
  26.           <jsp:getProperty name="account" property="accountNumber"/></td>
  27.       </tr>
  28.       <tr>
  29.         <td class="columnHead" align=right width="20%">Name: </td>
  30.         <td><input type="text" name="accountName" size="40" maxlength="40" 
  31.           value="<jsp:getProperty name="account" property="accountName"/>"></td>
  32.       </tr>
  33.       <tr>
  34.         <td class="columnHead" align=right width="20%">Status: </td>
  35.         <td><select name="status">
  36. <% String status = account.getStatus(); %>        
  37.    <option value="A" <%= status == "A" ? "selected" : "" %>>Active
  38.    <option value="I" <%= status == "I" ? "selected" : "" %>>Inactive
  39.    </option></select>
  40.         </td>
  41.       </tr>
  42.     </table>
  43.     <br>
  44.     <input type="Button" value="Submit" onclick="javascript:submit(); return false;">
  45.   </form>  
  46.    
  47. <%@ include file="Footer.htm" %>
  48. </body>
  49. </html>