我正在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
%>
答案 0 :(得分:3)