upload.html 648 B

1234567891011121314151617181920
  1. <html>
  2. <head>
  3. <meta charset="utf-8"/>
  4. <title>Upload</title>
  5. </head>
  6. <body>
  7. <h2>File Upload to HTML</h2>
  8. <form method="post" action="/action/uploadTest" enctype="multipart/form-data">
  9. <input type="hidden" name="MAX_FILE_SIZE" value="30000">
  10. <table border="0">
  11. <tr><td>Name</td><td><input type="text" name="Name"></td></tr>
  12. <tr><td>Address</td><td><input type="text" name="Address"></td></tr>
  13. <tr><td>File:</td><td><input type="file" name="file"></td></tr>
  14. </table>
  15. <input type="submit" value="send">
  16. <input type="reset" value="cancel">
  17. </form>
  18. </body>
  19. </html>