有这个Excel文件,我希望用户能够从我的服务器下载.单击"下载"按钮后,必须有一种简单的方法来启动文件下载...但我不知道如何实现这一点.
到目前为止我有这个:(VBscript和ASP)
Set fs=Server.CreateObject("Scripting.FileSystemObject") if (fs.FileExists("c:\file.xls"))=true then 'fake filename D: response.write("
") else response.write("Masterfile not found.
") end if set fs=nothing
javascript函数为空.
实际上,如果你想要一种"更有效"(和更性感)的方式,请使用:
location.href = your_url;
这样,您可以将编译器保存一段时间,location
直到达到window
对象的原型链.
你不会相信这一点.找到了...
function exportmasterfile() { var url='../documenten/Master-File.xls'; window.open(url,'Download'); }
对不起大家!
如果您的服务器配置为触发下载该mime类型的文件,那么就像这样简单:
window.location = your_url