当前位置: 首页 > 图文教程 > 网络编程 > ASP > 实现文件下载而不是由ie打开的代码

ASP
Asp Object 之:End
Asp Object 之:ServerVariables
Asp Object 之:Expires
Asp Object 之:ExpiresAbsolute
Asp Object 之:Flush
Asp Object 之:Form
Asp Object 之:IsClientConnected
Asp Object 之:PICS
Asp Object 之:QueryString
Asp Object 之:Redirect
Asp Object 之:Request.Cookies
Asp Object 之:Request
Asp Object 之:Response.Cookies
Asp Object 之:Response
Asp Object 之:Status
Asp Object 之:TotalBytes
Asp Object 之:Write
用ASP.Net编写留言本
如何把ASP编写成DLL(1)
如何把ASP编写成DLL(2)

ASP 中的 实现文件下载而不是由ie打开的代码


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 55 ::
收藏到网摘: n/a

       <%
  Const ForReading=1
  Const TristateTrue=-1 ''Unicode
  Const FILE_TRANSFER_SIZE=16384 ''16k
  
  ''Use the following line for IIS4/PWS - this is the default for IIS5
  Response.Buffer = True
  
  Function TransferFile(path, mimeType, filename)
  Dim objFileSystem, objFile, objStream
  Dim char
  Dim sent
  send=0
  TransferFile = True
  
  Set objFileSystem = Server.CreateObject("Scripting.FileSystemObject")
  Set objFile = objFileSystem.GetFile(Path)
  Set objStream = objFile.OpenAsTextStream(ForReading, TristateTrue)
  
  Response.AddHeader "content-type", mimeType
  response.AddHeader "Content-Disposition","attachment;filename="&filename
  Response.AddHeader "content-length", objFile.Size
  
  Do While Not objStream.AtEndOfStream
   char = objStream.Read(1)
   Response.BinaryWrite(char)
   sent = sent + 1
   If (sent MOD FILE_TRANSFER_SIZE) = 0 Then
   Response.Flush
   If Not Response.IsClientConnected Then
   TransferFile = False
   Exit Do
   End If
   End If
  Loop
  
  Response.Flush
  If Not Response.IsClientConnected Then TransferFile = False
  
  objStream.Close
  Set objStream = Nothing
  Set objFileSystem = Nothing
  End Function
  
  Dim path, mimeType, sucess
  ''Server.MapPath(path)
  path = "C:\Inetpub\wwwroot\help.gif"
  mimeType = "application/x-msdownload"
  sucess = TransferFile(path, mimeType,"help.gif")
  Response.End
  %>