You are on page 1of 1

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-

8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Servlet File Upload/Download</title>
<link rel="stylesheet" href="main.css" />
</head>
<body>
<div class="panel">
<h1>File Upload</h1>
<h3>Press 'CTRL' Key+Click On File To Select Multiple Files in Open
Dialog</h3>
<form id="fileUploadForm" method="post" action="fileUploadServlet"
enctype="multipart/form-data">
<div class="form_group">
<label>Upload File</label><span id="colon">: </span><input
id="fileAttachment" type="file" name="fileUpload" multiple="multiple" />
<span id="fileUploadErr">Please Upload A File!</span>
</div>
<button id="uploadBtn" type="submit" class="btn
btn_primary">Upload</button>
</form>
</div>

<!-- List All Uploaded Files -->


<div class="panel">
<a id="allFiles" class="hyperLink"
href="<%=request.getContextPath()%>/uploadedFilesServlet">List all uploaded
files</a>
</div>
</body>
</html>

You might also like