Skip to content

Instantly share code, notes, and snippets.

@ShubhamS32
Created September 13, 2017 09:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ShubhamS32/708edb146b012cc1f74bddec05d2fb1e to your computer and use it in GitHub Desktop.
Save ShubhamS32/708edb146b012cc1f74bddec05d2fb1e to your computer and use it in GitHub Desktop.
<!doctype html>
<head>
<title>Upload page</title>
<!--
Simple Page to Upload Multiple Files at one Go.
@author Shubham Shah 19oodp14@gmail.com 2017
-->
</head>
<body>
<form action="FileUpload.jsp" method="post" enctype="multipart/form-data" name="form1" id="form1">
<center>
<table border="2">
<tr>
<td align="center"><b>Multiple File Uploads</td>
</tr>
<tr>
<td> 1) Specify file: <input name="file" type="file" id="file"></td>
</tr>
<tr>
<td> 2) Specify file:<input name="file" type="file" id="file"></td>
</tr>
<tr>
<td> 3) Specify file:<input name="file" type="file" id="file"></td>
</tr>
<tr>
<td align="center"> <input type="submit" name="Submit" value="Submit files"/></td>
</tr>
</table>
<center>
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment