fileupload.jsp~23~
上传用户:dlqqsh
上传日期:2021-11-13
资源大小:7840k
文件大小:1k
源码类别:

OA系统

开发平台:

Java

  1. <%@ page contentType="text/html; charset=GBK" %>
  2. <%request.setCharacterEncoding("GBK"); %>
  3. <html>
  4. <head>
  5. <title>
  6. 天津市经贸委在线办公
  7. </title>
  8. </head>
  9. <body bgcolor="#ffffff">
  10. <h1>
  11. 文件上传
  12. </h1>
  13. <a href="index.jsp">返回首页</a>
  14. <%
  15. String sjm = request.getParameter("wjm");
  16. %>
  17. <form action="upload.jsp" method="post"  enctype="multipart/form-data">
  18. <table border="1">
  19.   <tr>
  20.     <td>上传文件</td>
  21.     <td>
  22.       <input type="file" name="file2" size="40">
  23.     </td>
  24.   </tr>
  25. <tr>
  26.     <td colspan="2"><input type="submit" value="上传"></td></tr>
  27. </table>
  28. </form>
  29. </body>
  30. </html>
  31. </body>
  32. </html>