Response.ContentType = "application/octect-stream name=OST Bolt Dummy.dwg"
Response.AddHeader "Content-disposition","attachment;filename=OST Bolt Dummy.dwg"
Dim objStream, buff
set objStream= Server.CreateObject("ADODB.Stream")
objStream.Open
objStream.LoadFromFile( server.mappath("..") & "/Data/01. 2D/OST Bolt Dummy.dwg")
buff = objStream.ReadText(-1)
Response.BinaryWrite buff
set buff = nothing
set objstream=nothing
'IT > Web Programming' 카테고리의 다른 글
Xml Web Service 를 사용하기 위한 IIS 및 ASP.NET 2.0 설정 (0) | 2018.04.09 |
---|---|
라이브러리 관리 NuGet (0) | 2018.04.05 |
[HTML5] API Web Storage 와 Application Cache (0) | 2018.04.05 |
사용자경험을 위한 자동완성 스크립트 30가지 리소스 (0) | 2018.04.04 |
HTML 5란 무엇이며 왜 중요한지에 대한 이야기 (0) | 2018.04.02 |
[ASP] 반드시 알아야 할 ASP 코딩습관 (0) | 2018.04.02 |
[ASP.NET] 트리뷰 등록 (0) | 2018.04.01 |
[ASP.NET] 스토어프로시저를 이용한 Record Read (0) | 2018.04.01 |