如何上传一个单纯的HTML文件?
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]
栏 目:
下一篇:Powershell小技巧之通过EventLog查看近期电脑开机和关机时间
本文标题:如何上传一个单纯的HTML文件?
本文地址:http://www.codeinn.net/misctech/59090.html






