Firefox没有给出完整的路径

时间:2012-08-21 21:54:59

标签: html file asp-classic

我正在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
%>

1 个答案:

答案 0 :(得分:3)

您需要使用文件上传输入控件并使用

将其发布到页面
<input type="file" name="fileUpload"/>

查看此链接以获取教程:ASP File Upload Example