You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
369 B
16 lines
369 B
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
|
<html>
|
|
<head>
|
|
<title>文件上传</title>
|
|
</head>
|
|
<body>
|
|
<h1>文件上传</h1>
|
|
|
|
<form action="message.jsp" method="post" enctype="multipart/form-data">
|
|
选择一个文件:
|
|
<input type="file" name="uploadFile"/>
|
|
<br/><br/>
|
|
<input type="submit" value="上传"/>
|
|
</form>
|
|
</body>
|
|
</html> |