-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupload.jsp
More file actions
16 lines (15 loc) · 536 Bytes
/
upload.jsp
File metadata and controls
16 lines (15 loc) · 536 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Insert title here</title>
</head>
<body>
<form role="form" action="upload.action" method="post" enctype="multipart/form-data">
标题:<input type="text" name="title"><br>
文件:<input type="file" name="upload"><br>
<input type="submit" value="上传">
</form>
</body>
</html>