upload.asp
上传用户:qyswxdl
上传日期:2013-06-01
资源大小:1373k
文件大小:1k
源码类别:

家庭/个人应用

开发平台:

ASP/ASPX

  1. <!--#include file="checkpost.asp"-->
  2. <!--#include file="security.asp"-->
  3. <!--#include file="articleconn.asp"-->
  4. <%if session("flag")>1 then
  5.     response.write "<script>alert('您的操作权限不够!');history.back();</script>"
  6.     response.end
  7. end if
  8. %>
  9. <html>
  10. <head>
  11. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  12. <SCRIPT language=javascript>
  13. function check() 
  14. {
  15. var strFileName=document.form1.FileName.value;
  16. if (strFileName=="")
  17. {
  18.      alert("请选择要上传的文件");
  19. document.form1.FileName.focus();
  20.      return false;
  21.    }
  22. }
  23. </SCRIPT>
  24. <style type="text/css">
  25. <!--
  26. body {
  27. background-color: #e1f4ee;
  28. }
  29. -->
  30. </style></head>
  31. <body leftmargin="0" topmargin="0">
  32. <form action="upfile.asp" method="post" name="form1" onSubmit="return check()" enctype="multipart/form-data">
  33.   <input name="FileName" type="FILE" class="tx1" size="28" style="BORDER-TOP-WIDTH: 1px; BORDER-LEFT-WIDTH: 1px; FONT-SIZE: 12px; BORDER-BOTTOM-WIDTH: 1px; BORDER-RIGHT-WIDTH: 1px">
  34.   <input type="submit" name="Submit" style="BORDER-TOP-WIDTH: 1px; BORDER-LEFT-WIDTH: 1px; FONT-SIZE: 12px; BORDER-BOTTOM-WIDTH: 1px; BORDER-RIGHT-WIDTH: 1px" value="上传"">
  35. </form>
  36. </body>
  37. </html>