利用ADODB.Stream使用浏览器下载服务器文件
就可以把这个文件下载下来
<%
2
3 call downloadfile(replace(replace(request("file"),"",""),"/",""))
4
5 function downloadfile(strfile)
6 make sure you are on the latest mdac version for this to work
7 -------------------------------------------------------------
8
9
10 get full path of specified file
11 strfilename = server.mappath(strfile)
12
13
14 clear the buffer
15 response.buffer = true
16 response.clear
17
18 create stream
19 set s = server.createobject("adodb.stream")
20 s.open
21
22 set as binary
23 s.type = 1
24
25 load in the file
26 on error resume next
27
28
29 check the file exists
30 set fso = server.createobject("scripting.filesystemobject")
31 if not fso.fileexists(strfilename) then
32 response.write("<h1>error:</h1>" & strfilename & " does not exist<p>")
33 response.end
34 end if
35
36
37 get length of file
38 set f = fso.getfile(strfilename)
39 intfilelength = f.size
40
41
42 s.loadfromfile(strfilename)
43 if err then
44 response.write("<h1>error: </h1>" & err.description & "<p>")
45 response.end
46 end if
47
48 send the headers to the users browser
49 response.addheader "content-disposition", "attachment; filename=" & f.name
50 response.addheader "content-length", intfilelength
51 response.charset = "utf-8"
52 response.contenttype = "application/octet-stream"
53
54 output the file to the browser
55 response.binarywrite s.read
56 response.flush
57
58
59 tidy up
60 s.close
61 set s = nothing
62
63
64 end function
65
66 %>
上一篇: console的方法解析
下一篇: linux导出sql查询结果的命令方法
推荐阅读
-
猎豹浏览器怎么下载视频文件?使用猎豹浏览器下载网页视频方法图解
-
Ruby使用eventmachine为HTTP服务器添加文件下载功能
-
使用asp下的adodb.stream 下载文件而不是打开
-
linux利用sh脚本上传下载文件到ftp服务器
-
利用xmlhttp和adodb.stream加缓存技术下载远程Web文件
-
Python 使用SFTP和FTP实现对服务器的文件下载功能
-
利用ADODB.Stream使用浏览器下载服务器文件
-
猎豹浏览器怎么下载视频文件?使用猎豹浏览器下载网页视频方法图解
-
使用原生node.js搭建HTTP服务器,支持MP4视频、图片传输,支持下载rar文件
-
Web开发使用JS的异步请求下载文件浏览器无响应