<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>無標題文檔</title>
</head>
<body>
<%
Dim fullName, s, fs, fl, Filesize, Filename, currentPath, relativePath
'取得檔案名稱參數,可以是表單提交或者查詢字串
fullName = Request.QueryString("down")
If fullName = "" Then Call ShowMessage("對不起,檔案名稱為空白!")
'轉為絕對路徑
'該門課件的根路徑
currentPath = Request.ServerVariables("PATH_TRANSLATED")
currentPath = Replace(currentPath,"script/download.asp","")
'網站子路徑,為空白代表下載檔案直接放在根路徑,可以添加子路徑如"down/"
relativePath = "stream_db/"
'下載檔案的完全路徑
Filename = currentPath&relativePath&fullName
'檢查檔案是否存在
Set fs = Server.CreateObject("Scripting.FileSystemObject")
'If Not fs.FileExists(Filename) Then Call ShowMessage("對不起,指定檔案不存在!")
'取得檔案大小,單位是位元組
Set fl = fs.GetFile(Filename)
Filesize = fl.Size
'銷毀FSO對象
Set fl = Nothing
Set fs = Nothing
'清理緩衝
Response.Buffer = True
Response.Clear
'建立Stream對象
Set s = Server.CreateObject("ADODB.Stream")
s.Open
'設定為二進位方式
s.Type = 1
'容錯
On Error Resume Next
'裝載檔案
s.LoadFromFile (Filename)
If Err Then Call ShowMessage("裝載指定檔案出現未知錯誤!")
'向瀏覽器輸出頭部
Response.AddHeader "Content-Disposition", "attachment; filename="&fullName
Response.AddHeader "Content-Length",Filesize
'Response.CharSet="UTF-8"
Response.ContentType = "application/octet-stream"
'分段向瀏覽器輸出檔案
Do While Not s.EOS
Contents = s.Read (4096) '每次讀取4096KB
Response.BinaryWrite Contents
Response.Flush
Loop
'一次性向瀏覽器輸出檔案
'Response.BinaryWrite s.Read
'Response.Flush
'銷毀對象
s.Close: Set s = Nothing
'在本頁輸出提示資訊
Sub ShowMessage(msg)
Response.Write "<br><div align='center'><div style='color:red; font-weight:bold; text-align:center; border:1px solid #CCCCCC; 'background-color:#E8E8E8; padding:4px 2px 2px; width:300px; font-size:12px'>" & msg & "</div></div><br>"
Response.End
End Sub
%>
</body>
</html>