fileupload.jsp~27~
资源名称:bangong.rar [点击查看]
上传用户:dlqqsh
上传日期:2021-11-13
资源大小:7840k
文件大小:1k
源码类别:
OA系统
开发平台:
Java
- <%@ page contentType="text/html; charset=GBK" %>
- <%request.setCharacterEncoding("GBK"); %>
- <html>
- <head>
- <title>
- 天津市经贸委在线办公
- </title>
- </head>
- <body bgcolor="#ffffff">
- <h1>
- 文件上传
- </h1>
- 第二步,浏览上传文件
- <a href="index.jsp">返回首页</a>
- <%
- String wjm = request.getParameter("wjm");
- String sm = request.getParameter("sm");
- session.setAttribute("wjm",wjm);
- session.setAttribute("sm",sm);
- %>
- <form action="upload.jsp" method="post" enctype="multipart/form-data">
- <table border="1">
- <tr>
- <td>上传文件名</td>
- <td>
- <%=wjm %>
- </td>
- </tr>
- <tr>
- <td>上传文件说明</td>
- <td>
- <%=sm %>
- </td>
- </tr>
- <tr>
- <tr>
- <td>上传文件</td>
- <td>
- <input type="file" name="file2" size="40">
- </td>
- </tr>
- <tr>
- <td colspan="2"><input type="submit" value="上传"></td></tr>
- </table>
- </form>
- </body>
- </html>
- </body>
- </html>