国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > ASP > 正文

使用asp下的adodb.stream 下載文件而不是打開

2020-07-27 13:02:41
字體:
供稿:網(wǎng)友

在瀏覽器的地址欄里直接輸入一個doc或xls或jpg的文件的url路徑,那么該文件會直接顯示在瀏覽器里。而在很多時候我們希望能直接彈出下載提示框讓用戶下載,我們該怎么辦呢?這里有兩種方法: 

1、設(shè)置你的服務(wù)器的iis,給doc等后綴名做映射。

2、在向客戶端發(fā)送時設(shè)置其contenttype。 

下面詳細(xì)說明方法2 

程序代碼: 

<% Response.Buffer = true Response.Clear dim url Dim fso,fl,flsize dim Dname Dim objStream,ContentType,flName,isre,url1 '*********************************************調(diào)用時傳入的下載文件名 Dname=trim(request("n")) '****************************************************************** If Dname<>"" Then '******************************下載文件存放的服務(wù)端目錄  url=server.MapPath("/")&"/"&Dname '*************************************************** End If Set fso=Server.CreateObject("Scripting.FileSystemObject")  Set fl=fso.getfile(url)  flsize=fl.size  flName=fl.name  Set fl=Nothing  Set fso=Nothing %> <%  Set objStream = Server.CreateObject("ADODB.Stream")  objStream.Open  objStream.Type = 1  objStream.LoadFromFile url  Select Case lcase(Right(flName, 4))  Case ".asf"   ContentType = "video/x-ms-asf"  Case ".avi"   ContentType = "video/avi"  Case ".doc"   ContentType = "application/msword"  Case ".zip"   ContentType = "application/zip"  Case ".xls"   ContentType = "application/vnd.ms-excel"  Case ".gif"   ContentType = "image/gif"  Case ".jpg", "jpeg"   ContentType = "image/jpeg"  Case ".wav"   ContentType = "audio/wav"  Case ".mp3"   ContentType = "audio/mpeg3"  Case ".mpg", "mpeg"   ContentType = "video/mpeg"  Case ".rtf"   ContentType = "application/rtf"  Case ".htm", "html"   ContentType = "text/html"  Case ".txt"   ContentType = "text/plain"  Case Else   ContentType = "application/octet-stream"  End Select  Response.AddHeader "Content-Disposition", "attachment; filename=" & flName  Response.AddHeader "Content-Length", flsize  Response.Charset = "UTF-8"  Response.ContentType = ContentType  Response.BinaryWrite objStream.Read  Response.Flush  response.Clear()  objStream.Close  Set objStream = Nothing %>

將下面的東西存成download.asp然后你就可以用<a herf="http://xxx.xxx.com/download.asp?n=file.doc">download!</a>來下載同一目錄下的file.doc了!  

但是這里有個問題就是直接將file.doc路徑寫在url里是不安全的,所以解決方案應(yīng)該是將file.doc的路徑存到數(shù)據(jù)庫里,同過查找數(shù)據(jù)庫后得到路徑 

在這個程序的最前面如果加上一個判斷: 

if instr(Request.ServerVariables("HTTP_REFERER"),"http://你的域名")=0 then    Response.End end if 

就能夠很好的防止別人的盜鏈了.

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持武林網(wǎng)。

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 阳西县| 长顺县| 宁陵县| 明光市| 淅川县| 高唐县| 阳城县| 图木舒克市| 天柱县| 瓮安县| 碌曲县| 青神县| 横山县| 辽宁省| 苍山县| 武夷山市| 富宁县| 邵东县| 西峡县| 南城县| 屯门区| 望城县| 岢岚县| 金川县| 永春县| 阿鲁科尔沁旗| 三亚市| 托克托县| 青龙| 北票市| 新巴尔虎左旗| 嵊泗县| 遂昌县| 土默特左旗| 共和县| 莱芜市| 沅陵县| 仲巴县| 文水县| 宁阳县| 无棣县|