用流(stream)技術做下載 (轉)

amyz發表於2007-08-15
用流(stream)技術做下載 (轉)[@more@]

function dl(f,n)
 on error resume next
 Set S=Create("Ado.Stream")
 S.Mode=3
 S.Type=1
 S.Open
 S.LoadFromFile(f)
 if Err.Number>0 then
  Response.Status="404"
 else
  Response.ContentType="application/octet-stream"
  Response.AddHeader "Content-Disposition:","attachment; filename=" & n
  Range=Mid(Request.ServerVariables("HTTP_RANGE"),7)
  if Range="" then
  Response.BinaryWrite(S.Read)
  else
  S.position=Clng(Split(Range,"-")(0))
  Response.BinaryWrite(S.Read)
  End if
 end if
 Response.End
end function

使用示例:
call dl(Server.MapPath("..//07.zip"),"07.zip")


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10752019/viewspace-958742/,如需轉載,請註明出處,否則將追究法律責任。

相關文章