Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <html>
  2.     <head>
  3.         <title>File Uploading Form</title>
  4.     </head>
  5.     <body>
  6.         <h3>File Upload:</h3>
  7.         Select a file to upload: <br />
  8.         <form action="uploadFile.jsp" method="post" enctype="multipart/form-data">
  9.             <input type="file" name="file" size="50" />
  10.             <br />
  11.             <input type="submit" value="Upload File" />
  12.         </form>
  13.     </body>
  14. </html>
  15.