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

首頁(yè) > 編程 > ASP > 正文

asp在IE瀏覽器中下載服務(wù)端上的各類文件的實(shí)現(xiàn)方法

2020-07-27 13:04:08
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友
即直接提示用戶下載而不是由瀏覽器打開(kāi)某些文件。注意,下面的代碼拷貝到ASP文件中后,不要再添加一些非ASP代碼在頁(yè)面中:如HTML和javascript客戶端的代碼。 
復(fù)制代碼 代碼如下:

<%
'--------------------------------------------
Response.Buffer = True
Dim strFilePath, strFileSize, strFileName
Const adTypeBinary = 1
strFilePath = "文件路徑 "
strFileSize = ... 文件大小,可選
strFileName = "文件名"
Response.Clear
'8*******************************************8
' 需要在你的服務(wù)器上安裝 MDAC 2.6 或MDAC2.7
'8*******************************************8
Set objStream = Server.CreateObject("ADODB.Stream")
objStream.Open
objStream.Type = adTypeBinary
objStream.LoadFromFile strFilePath
strFileType = lcase(Right(strFileName, 4)) '文件擴(kuò)展名 站.長(zhǎng).站 
' 通過(guò)文件擴(kuò)展名判斷 Content-Types
Select Case strFileType
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 ".asp"
ContentType = "text/asp" 
Case Else
'Handle All Other Files
ContentType = "application/octet-stream"
End Select
Response.AddHeader "Content-Disposition", "attachment; filename= strFileName
Response.AddHeader "Content-Length", strFileSize
Response.Charset = "UTF-8" ' 客戶端瀏覽器的字符集UTF-8
Response.ContentType = ContentType
Response.BinaryWrite objStream.Read
Response.Flush
objStream.Close
Set objStream = Nothing
%> 

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 襄汾县| 印江| 东莞市| 西城区| 南丹县| 四会市| 米泉市| 德昌县| 南和县| 和静县| 乐陵市| 鄄城县| 日喀则市| 鸡东县| 临江市| 兴山县| 巴楚县| 望城县| 芜湖市| 福泉市| 梁山县| 宁陕县| 泰宁县| 丰城市| 丰原市| 隆回县| 会泽县| 汉阴县| 平塘县| 祁连县| 旅游| 绩溪县| 阿尔山市| 循化| 象山县| 平湖市| 涟源市| 柯坪县| 莲花县| 东源县| 阳曲县|