Asp Object 之:Charset
發(fā)表時(shí)間:2024-06-07 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]CharsetCharset 屬性將字符集名稱(如 ISO-LATIN-7)附加到 Response 對(duì)象中 content-type 標(biāo)題的后面。語法Response.Charset(CharsetName) 參數(shù)CharsetName 指定該網(wǎng)頁的字符集的字符串。字符集的名稱將被附加到 Res...
Charset
Charset 屬性將字符集名稱(如 ISO-LATIN-7)附加到 Response 對(duì)象中 content-type 標(biāo)題的后面。
語法
Response.Charset(CharsetName)
參數(shù)
- CharsetName
- 指定該網(wǎng)頁的字符集的字符串。字符集的名稱將被附加到 Response 對(duì)象中的 content-type 標(biāo)題的后面。
示例
對(duì)于不包含 Response.Charset 屬性的 ASP 頁,content-type 標(biāo)題將為:
content-type:text/html
如果同樣的 .asp 文件包含
<% Response.Charset("ISO-LATIN-7") %>
則 content-type 標(biāo)題將為:
content-type:text/html; charset=ISO-LATIN-7
注釋
無論字符串表示的字符集是否有效,該功能都會(huì)將其插入 content-type 標(biāo)題中。
如果某個(gè)頁包含多個(gè)含有 Response.Charset 的標(biāo)記,則每個(gè) Response.Charset 都將替代前一個(gè) CharsetName。這樣,字符集將被設(shè)置為該頁中 Response.Charset 的最后一個(gè)實(shí)例所指定值。
在 Macintosh 系統(tǒng)上,默認(rèn)的 U.S. 字符集設(shè)置不是 ISO-LATIN-1。當(dāng)處理文檔時(shí),用于 Macintosh 系統(tǒng)的個(gè)人 Web 服務(wù)器自動(dòng)從 Macintosh 字符集轉(zhuǎn)換為 ISO-Latin-1。在 U.S. 版本中,如果未使用 Response.Charset 轉(zhuǎn)換字符集,而且用于 Macintosh 系統(tǒng)的個(gè)人 Web 服務(wù)器不轉(zhuǎn)換字符集,那么所有網(wǎng)頁都被假定為在 U.S. Macintosh 字符集中。
應(yīng)用于
Response 對(duì)象