-
[asp]텍스트파일 내보내기,application/octet-stream,개행처리프로그램/asp 2013. 6. 13. 17:17헤더를 이용하여 웹페이지 출력 글 텍스트 파일로 내보내기 입니다.
<%@ Language=VBScript %> Response.ContentType = "application/octet-stream" Response.CacheControl = "public" Response.AddHeader "Content-Disposition", "attachment;filename=memo.txt"
개행처리는vbCrLf
'프로그램 > asp' 카테고리의 다른 글
[ASP] DATE(날짜) 관련함수 정리 <datediff,dateport,dateserial,dateadd,monthname> (0) 2013.11.20 [asp]DB 요청시간 지정하기, ConnectionTimeou (0) 2013.07.21 [asp]no-cache, 페이지 인코딩 설정 (CODEPAGE) (0) 2013.04.27 [asp]현재 날짜 시간 요일 (formatdatetime,now) (0) 2013.04.27 [asp]정규식 패턴, regexp (0) 2013.04.27