ASP로 코드 작성 시 글자 깨짐 현상이 나오는 경우가 있습니다.
이럴 경우 최상단에 아래 코드들을 입력하면 깨짐 현상이 사라집니다.
[UTF-8]
<%
Response.CharSet="utf-8"
Session.codepage="65001"
Response.codepage="65001"
Response.ContentType="text/html;charset=utf-8"
%>
[EUC-KR]
<%
Response.CharSet="EUC-KR"
Session.codepage="949"
Response.codepage="949"
Response.ContentType="text/html;charset=euc-kr"
%>
728x90
'Web > ASP' 카테고리의 다른 글
[ASP] 특수기호 치환 메서드. (0) | 2021.11.01 |
---|
댓글