엑셀다운로드시 갑자기 한글이 깨지는 현상이 발생
체크1. CharSet 지정
<%
Response.CharSet = "euc-kr" '//-- 요걸 빼먹은건지 확인
Response.ContentType = "application/vnd.ms-excel"
Response.AddHeader "Content-Disposition", "attachment;filename=엑셀파일명.xls"
%>
체크2. Meta 태그 확인
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr" />
메타태그가 정상적으로 있는지 확인
체크3. asp파일 체크
파일인코딩이 ANSI 로 되어있는지 확인
'Language(언어) > ASP' 카테고리의 다른 글
ASP 클라이언트 IP 체크 (0) | 2014.02.12 |
---|---|
ASP DATEDIFF 함수 날짜사이 값 구하기 (0) | 2014.01.23 |
ASP Array 함수 (0) | 2013.12.06 |
ASP CBool 함수 (0) | 2013.12.06 |
ASP CByte 함수 (0) | 2013.12.06 |
댓글