Charset
Charset 属性将字符集名称(如 ISO-LATIN-7)附加到 Response 对象中 content-type 标题的后面。
语法Response.Charset(CharsetName)参数CharsetName 指定该网页的字符集的字符串。字符集的名称将被附加到 Response 对象中的 content-type 标题的后面。 示例
对于不包含 Response.Charset 属性的 ASP 页,content-type 标题将为:
content-type:text/html
如果同样的 .asp 文件包含
<% Response.Charset("ISO-LATIN-7") %
则 cont...[ 查看全文 ]