我正在为我们的主题创建一个 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
%>