ASP CodePage Property

Session Object Referentie Handboek

Definition and Usage

The CodePage property specifies the character set used when displaying dynamic content.

Example:

  • 1252 - American English and most European languages
  • 932 - Japanse Kanji

Syntaxis

Session.CodePage(=Codepage)
Parameters Beschrijving
codepage Definieert de codepagina (tekenset) voor het systeem dat de script engine uitvoert.

Voorbeeld

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

Uitvoer:

936

Session Object Referentie Handboek