Advertisement
Guest User

index

a guest
Apr 22nd, 2011
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.89 KB | None | 0 0
  1. <%--
  2.     Document   : index
  3.     Created on : 22/04/2011, 16:31:27
  4.     Author     : meathook
  5. --%>
  6.  
  7. <%@page contentType="text/html" pageEncoding="UTF-8"%>
  8. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  9.    "http://www.w3.org/TR/html4/loose.dtd">
  10.  
  11. <html>
  12.     <head>
  13.         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  14.         <title>JSP Page</title>
  15.     </head>
  16.     <body>
  17. <div align="center" id="form1">
  18.         <form name="cadastrarAluno" action="CadastrarAluno" method="post">
  19.                         <h1>Cadastrar aluno</h1>
  20. <pre>
  21. Nome     :  <input type="text" name="nomeAluno" />
  22. Idade    :  <input type="text" name="idadeAluno" />
  23. Endereço :  <input type="text" name="enderecoAluno" />
  24. Id       :  <input type="text" name="idAluno" />
  25.  
  26. <input type="submit" name="sub" /> <input type="reset" />
  27. </form>
  28. </pre>
  29. </div>
  30.     </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement