Notice
Recent Posts
Recent Comments
Link
«   2024/06   »
1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30
Tags
more
Archives
Today
Total
관리 메뉴

WON.dev

uploadForm.jsp 본문

SPRING/chapter07_File

uploadForm.jsp

GAWON 2023. 7. 7. 18:08
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
	<form action="uploadFormAction" method="post" enctype="multipart/form-data">
		<input type="file" name="uploadFile" multiple="multiple">
		<button>Submit</button>
	</form>
</body>
</html>

'SPRING > chapter07_File' 카테고리의 다른 글

chapter07_File SPRING  (0) 2023.07.07
chapter07_File/pom.xml  (0) 2023.07.07
uploadAjax.jsp  (0) 2023.07.07
servlet-context.xml  (0) 2023.07.07
AttachFileDTO.java  (0) 2023.07.07