Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Save file on client computer

0.00/5 (No votes)
13 Feb 2006 1  
Save file on client computer

Title: Save file on client computer
Author: Jitendra Bansiwal
Email: jkbansiwal@hotmail.com
Environmen : ASP

Introduction

This ASP page copy file from web server to client machine without zip the file.

Using the code

Copy the code and save as .asp and open in browser

  Response.buffer = TRUE
  Response.AddHeader "content-disposition","attachment; filename=MyFile.doc"

  Const adTypeBinary = 1
  'Create Stream object
   Dim BinaryStream
  Set BinaryStream = CreateObject("ADODB.Stream")
  
  'Specify stream type - we want To get binary data.
  BinaryStream.Type = adTypeBinary
  
  'Open the stream
  BinaryStream.Open
  
  'Load the file data from disk To stream object
  BinaryStream.LoadFromFile "C:\Abc.doc"
  
  'Open the stream And get binary data from the object
  dim  BinaryData
  BinaryData = BinaryStream.Read
  Response.BinaryWrite(BinaryData)
 Set BinaryStream = Nothing

   Response.End
   

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here