upload.html 697 B

12345678910111213141516171819
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>upload</title>
  5. </head>
  6. <body>
  7. <form method='post' enctype='multipart/form-data' action='/demo/v1/api/903/upload' target='_blank'>
  8. <div>
  9. <p>Upload one or more files using this form:</p>
  10. <input type='text' name='text' />
  11. <input type='file' name='files' />
  12. <input type='hidden' name='hid' value='hid_Value' />
  13. </div>
  14. <div>
  15. <input type='submit' value='Upload' />
  16. </div>
  17. </form>
  18. </body>
  19. </html>