0

我正在为我们的主题创建一个 ASP 经典文件复制程序。它在 IE 中运行良好,但在 Firefox 中却不行。我需要让用户使用输入类型文件浏览文件,但是每当我获取值时,它只返回文件名而不是完整路径(在 firefox 中)。我搜索互联网但没有运气。有没有其他方法可以做到这一点?提前致谢

<%

    if (Request.Form("btnSave")<>"" )then

         dim fis
         Set fis = Server.createobject("Scripting.FileSystemObject")
         Response.write(Request.Form("txtPath"))
         dim path
         path= Server.Mappath("\sample\images") & "\"
         Response.write(path)
         dim source
         source =Request.Form("txtPath")
         response.write(source)
         fis.CopyFile source, path
         set fso = nothing
   End If
%>
4

1 回答 1

3

您需要使用文件上传输入控件并将其发布到页面使用

<input type="file" name="fileUpload"/>

查看此链接以获取教程:ASP 文件上传示例

于 2012-08-22T00:06:56.507 回答