ASP File Download

by 조쉬 posted Feb 27, 2014
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄

화면 디자인

<TR>
<TD width=100 align=center bgcolor="#f0f0f0">첨부파일</TD>
<TD>&nbsp;<a href="download.asp?filename=<%=attachfile%>"><%=attachfile%></a></TD>
</TR>


다운로드 처리 ASP 코드 (download.asp)

< %
filename = request("filename")
filedir=Server.MapPath("\") & "/UPLOAD/"
response.addheader "Content-Type","Charset=EUC-KR"
response.contenttype = "application/unkown" ' 알수없는 프로그램 타입(종류)으로 설정
response.addheader "content-disposition", "attachment;filename="&filename
Set obj = Server.CreateObject("ADODB.Stream")
obj.open
obj.type = 1
obj.loadfromfile filedir & filename
download = obj.read
response.binarywrite download
Set obj=nothing
%>

화면에 "파일 다운로드" 윈도우 팝업이 뜨면서 "실행,저장,취소"를 선택할수 있고 실행 완료되면 원래 화면상태로 돌아간다.