You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
1.0 KiB
HTML

5 months ago
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>首页 - 文件上传页面</title>
</head>
<body>
<!--上传部分-->
<form id="fileuploadform" method="POST" enctype="multipart/form-data" action="/goftp/file/fileUploadPost">
<label>文件上传:</label>
<input id="file" name="file" type="file" />
<input type="submit" value="保存" />
<br/><br/>
</form>
<form id="picuploadform" method="POST" enctype="multipart/form-data" action="/goftp/file/picUploadPost">
<label>图片上传:</label>
<input id="file" name="file" type="file" />
<input type="submit" value="保存" />
<br/><br/>
</form>
<form id="fileuploadform" method="POST" enctype="multipart/form-data" action="/goftp/file/uploadBaseFileToGoFtpDir">
<label>不改变名称文件上传:</label>
<input id="file" name="file" type="file" />
<input type="submit" value="保存" />
<br/><br/>
</form>
</body>
</html>