imgUpload.asp 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!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:250px;
  14. }
  15. .btn1{
  16. width: 50px;
  17. border: none;
  18. background: url("images/btn1.gif") 0 0 no-repeat;
  19. color: #0099CC;
  20. cursor: pointer;
  21. }
  22. input[type="file"] {
  23. color:#CCC;
  24. font-size:12px;
  25. }
  26. </style>
  27. <script>
  28. function chkuploadfile(){
  29. if( document.getElementById("filedata").value == '' ){alert('请选择需要上传的文件');return false;}
  30. }
  31. </script>
  32. </head>
  33. <body>
  34. <form method="post" name="form1" action="imgUploadFile.asp?id=<%=Request.QueryString("id")%>&act=s" enctype="multipart/form-data" onsubmit="return chkuploadfile()">
  35. <input type="file" name="filedata" id="filedata" /><input type="submit" value="上传" class="btn1" />
  36. </form>
  37. </body>
  38. </html>