<%@Language="VBScript" CODEPAGE="65001" %>
<%
Response.CharSet="utf-8"
Session.codepage="65001"
Response.codepage="65001"
Response.ContentType="text/html;charset=utf-8"
%>
<%
Response.Buffer = True
Response.Expires = 0
Response.ContentType = "text/csv"
Response.Charset = "euc-kr"
Session.codepage="949"
Response.codepage="949"
Response.CacheControl = "public"
Response.AddHeader "Content-Disposition","attachment; filename=통계_" & left(now(),10) & ".csv"
nstr = "no,항목1,항목2,항목3,항목4,항목5" & vbcrlf
for i=1 to 10 step +1
nstr = nstr & chr(34) & i & chr(34)
nstr = nstr & "," & chr(34) & str1 & chr(34)
nstr = nstr & "," & chr(34) & str2 & chr(34)
nstr = nstr & "," & chr(34) & str3 & chr(34)
nstr = nstr & "," & chr(34) & str4 & chr(34)
nstr = nstr & "," & chr(34) & str5 & chr(34)
nstr = nstr & vbcrlf
next
%>
'asp' 카테고리의 다른 글
class asp에서 WScript.Shell 사용하기 위해 서버에 설치할 것 (0) | 2015.06.11 |
---|---|
asp 썸네일 이미지 생성하기 (1) | 2014.04.30 |
classic asp 엑셀 출력시 문자열이 숫자나 수식으로 출력되는 문제 해결 방법 (0) | 2013.09.08 |
asp xml 파싱 (한글도 잘 되는 소스) (1) | 2013.06.21 |
classic asp 큰 따옴표 치환하기 (0) | 2013.01.25 |