ASP 코드 페이지 속성


❮ 전체 세션 개체 참조

CodePage 속성은 동적 콘텐츠를 표시할 때 사용할 문자 집합을 지정합니다.

일부 코드 페이지의 예:

  • 1252 - 미국 영어 및 대부분의 유럽 언어
  • 932 - 일본어 한자

통사론

Session.CodePage(=Codepage)

Parameter Description
codepage Defines a code page (character set) for the system running the script engine

<%
Response.Write(Session.CodePage)
%>

Output:

1252

❮ 전체 세션 개체 참조