uploadfile.asp 960 B

1234567891011121314151617181920212223242526272829303132
  1. <!--#include file="Conn.asp"--><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>管理区域</title>
  6. <style>
  7. body{margin:0}
  8. form{
  9. margin:0;padding:0;
  10. }
  11. input{
  12. float:left;height:22px;border:1px solid #DBE6E3;background:#FFF;
  13. width:260px;
  14. }
  15. .btn1{
  16. width:60px;height:22px;background:#ECE9D8;
  17. cursor:pointer;margin-left:10px;
  18. }
  19. </style>
  20. <script>
  21. function chkuploadfile(){
  22. if( document.getElementById("filedata").value == '' ){alert('请选择需要上传的文件');return false;}
  23. }
  24. </script>
  25. </head>
  26. <body>
  27. <form method="post" name="form1" action="upload.asp?act=s" enctype="multipart/form-data" onsubmit="return chkuploadfile()">
  28. <input type="file" name="filedata" id="filedata" /><input type="submit" value="上传" class="btn1" />
  29. </form>
  30. </body>
  31. </html>