ASP 字符集 属性
❮ Response 对象完整参考
Charset 属性将字符集的名称附加到 Response 对象中的内容类型标头。默认字符集为 ISO-LATIN-1。
注意:此属性将接受任何字符串,无论它是否为有效的字符集。
语法
response.Charset(charsetname)
参数 | 描述 |
---|---|
charsetname | 指定页面字符集的字符串 |
示例
如果 ASP 页面未设置 Charset 属性,则内容类型标头将为
content-type:text/html
如果我们包含 Charset 属性
<%response.Charset="ISO-8859-1"%>
则内容类型标头将为
content-type:text/html; charset=ISO-8859-1
❮ Response 对象完整参考