Created
July 4, 2013 05:38
-
-
Save vanjikumaran/5925149 to your computer and use it in GitHub Desktop.
Index page that has the interface.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <%-- | |
| 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