PageRenderTime 42ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/Example/test.html

http://github.com/ademar/suave
HTML | 26 lines | 25 code | 1 blank | 0 comment | 0 complexity | 428dd80cc132b57014e7eb5cb702c729 MD5 | raw file
Possible License(s): Apache-2.0
  1. <html>
  2. <head><title>test page</title></head>
  3. <body>
  4. <br />
  5. POST test
  6. <form method="post" action="test.html">
  7. <input type="text" name="edit1" /><br />
  8. <input type="submit" />
  9. </form>
  10. <br />
  11. File Upload test
  12. <form method="post" action="upload" enctype="multipart/form-data">
  13. <input type="file" name="myfile" /><br />
  14. <input type="submit" />
  15. </form>
  16. <br />
  17. Multiple File Upload test
  18. <form method="post" action="upload2" enctype="multipart/form-data">
  19. <input type="file" name="myfile1" /><br />
  20. <input type="file" name="myfile2" /><br />
  21. <input type="text" name="edit1" /><br />
  22. <input type="submit" />
  23. </form>
  24. </body>
  25. </html>