欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

如何上传一个单纯的HTML文件?

程序员文章站 2022-04-15 09:19:12
fileup.htm     < 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]