<%
file = Request.QueryString("FileName")
strPath = Server.MapPath("/FILE_PDS")&"\"& File
'경로 설정
Response.AddHeader "Content-Disposition","attachment; filename=" & file & """"
Response.ContentType = "application/x-msdownload"
Response.CacheControl = "private"
set objFS =Server.CreateObject("Scripting.FileSystemObject")
set objF = objFS.GetFile(strPath)
Response.AddHeader "Content-Length", objF.Size
set objF = nothing
set objFS = nothing
Set objStream = Server.CreateObject("ADODB.Stream")
objStream.Open
objStream.Type = 1
objStream.LoadFromFile(strPath)
download = objStream.Read
Response.BinaryWrite download
Set objstream = nothing
%>
'ASP' 카테고리의 다른 글
asp코드에서 오라클 대용량 필드 value를 가져오는 부분입니다 (0) | 2011.07.01 |
---|---|
ASP 요것만 알면됨 (2) | 2010.10.11 |
[IIS7]ASP 에서 자세한 오류표시 (0) | 2010.10.11 |
[SiteGalaxyUpload] .Form.1 오류 '80004005' (0) | 2010.08.20 |
ASP 예외처리/에러코드 보여주기 (0) | 2010.05.10 |
배열 길이 값을 보전하면서 동적변환 (0) | 2010.01.08 |
[MSDN]ASP에서 BLOB필드에 저장된 이미지를 나타내는 방법 (0) | 2010.01.03 |
Free Code MD5 사용법 및 암호화파일 (0) | 2009.12.15 |
Tag 삭제 (0) | 2009.12.15 |
오라클 ( LONG TYPE )대용량 필드에 값넣기 (0) | 2009.12.15 |