fso判断文件不存在时怎样才能转到其他页面
Set objFSO = Server.CreateObject("Scripting.FileSystemObject") filepath=Server.MapPath(""&myrequest.Savepath&""&SaveFileName)
if objFSO.FileExists(filepath) then
objFSO.DeleteFile(filepath)
else
response.redirect "<scritp>alert('文件不存在!');location.replace('uplist.asp')</script>"
end if
set objFSO=nothing
这串代码,文件不存在时,出现一个错误页,而不是弹出提示框,确定后转到"uplist.asp",怎么实现这种效果呢?