Advertisement
Javi

Struts fomulario transferencias

Feb 24th, 2012
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.00 KB | None | 0 0
  1. <%@page contentType="text/html" pageEncoding="UTF-8"%>
  2.  
  3. <%@taglib prefix="bean" uri="http://struts.apache.org/tags-bean"  %>
  4. <%@taglib prefix="html" uri="http://struts.apache.org/tags-html"  %>
  5.  
  6. <!DOCTYPE html>
  7. <html:html>
  8.     <head>
  9.         <html:base/>
  10.         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  11.         <title>JSP Page</title>
  12.     </head>
  13.     <body>
  14.         <h1>Transferencias</h1>
  15.        
  16.         <htm:errors/>
  17.        
  18.         <html:form action="" >
  19.             <label>Origen:</label>
  20.             <html:text property="codigoOrigen" />
  21.             <br/>
  22.             <label>Destino:</label>
  23.             <html:text property="codigoDestino" />
  24.             <br/>
  25.             <label>Importe:</label>
  26.             <html:text property="importe" />
  27.             <html:errors property="importe" />
  28.             <br/>
  29.             <html:cancel>Cancelar</html:cancel>
  30.             <html:submit>Aceptar</html:submit>
  31.         </html:form>
  32.        
  33.     </body>
  34. </html:html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement