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

Java编程

开发平台:

Java

  1. <%-- Page Directives --%>
  2. <%@ page session="false" errorPage="Error.jsp" import="bible.jsp.*"%>
  3. <html>
  4. <head>
  5. <title>Account Search</title>
  6. <link href="jsp.css" type=text/css rel=stylesheet>
  7. </head>
  8. <body>
  9. <%@ include file="Header.jsp" %>
  10.   <form action="loadaccount" method="get" name="prompt" id="prompt">
  11.     <input type="hidden" name="cmd" value="">
  12.     <table cellSpacing=1 cellPadding=0 border=0 width="100%">
  13.       <tr>
  14.         <td colspan=2 class="sectionTitle">Account Search</td>
  15.       </tr>
  16.       <tr>
  17.         <td class="columnHead" align=right width="20%">Select Account: </td>
  18.         <td><select name="accountNumber">
  19.           <option value="">--Choose One--
  20.           <option value="110-12345">Martin Moneybags
  21.           <option value="110-98765">Lois Lottamoney
  22.           <option value="110-13579">Greg Goinbroke
  23.           </option></select>
  24.          </td>
  25.       </tr>
  26.     </table>
  27.     <br>
  28.     <input type="Button" value="Edit" onclick="javascript:document.prompt('cmd').value='edit';submit();">
  29.     <input type="Button" value="Detail" onclick="javascript:document.prompt('cmd').value='detail';submit();">
  30.   </form>  
  31.    
  32. <%@ include file="Footer.htm" %>
  33. </body>
  34. </html>