如何上传一个单纯的HTML文件?
                (编辑:jimmy 日期: 2025/11/4 浏览:3 次 )
            
            
            fileup.htm
     < html >
  < head >
< title >千花飞舞之上传单个文件< /title >
< /head >
<body>    
< form enctype="multipart/form-data" method="post" action="fileup.asp" > 
      输入想要上传的文件: < input type="file" name="f1" >
< input type="submit" value="开始上传" > < /form >
< /body >
< /html > 
fileup.asp
< %@ LANGUAGE="VBscript" % > 
    < html >
< body >恭喜,文件上传成功!
    < % Set upl = Server.CreateObject("SoftArtisans.FileUp") % > 
    < % upl.SaveAs "C: empupload.out" % >
    上传文件字节数: < %=upl.TotalBytes% > 
    < /body > 
< /html >
[1]
下一篇:如何简单地上传文件?