Skip to content

Instantly share code, notes, and snippets.

@vanjikumaran
Created July 4, 2013 05:38
Show Gist options
  • Select an option

  • Save vanjikumaran/5925149 to your computer and use it in GitHub Desktop.

Select an option

Save vanjikumaran/5925149 to your computer and use it in GitHub Desktop.
Index page that has the interface.
<%--
Created by IntelliJ IDEA.
User: vanji
Date: 6/22/13
Time: 2:07 PM
This example is demonstrate how to upload a file into given location of the server
--%>
<html lang="en">
<head>
<title>File Uploading Form</title>
</head>
<body>
<div>
<h1>Batch Order Upload</h1>
<form action="batch_Order_Process.jsp" method="post" enctype="multipart/form-data">
<ul>
<h3>File Upload:</h3>
Select a file to upload: <br />
<input type="file" name="file" size="50" />
<br />
<input type="submit" value="Upload File" />
</ul>
</form>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment