The Charset property appends the name of the character set being used to the content-type header contained in the response object.
The Charset property adds the name of the character set to the content-type header contained in the response object. Unfortunately, CharSet will accept any string, vaild or not, for the name. The default character set is ISO-LATIN-1, except on the Macintosh where the default is the Macintosh character set.
<% Response.Charset
= "MS_Kanji" %>
If the header is:
content-type: text/html
Then the header will become:
content-type: text/html; charset = MS_Kanji