Advertisement
Fhernd

form.html

Nov 17th, 2011
2,236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.34 KB | None | 0 0
  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.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement