ASP Charset 屬性
asp charset 屬性

charset 屬性向 response 對象中 content-type 頭部追加字符集名稱。默認(rèn)字符集是 iso-latin-1。
注意:此屬性可接受任何字符串,不論是否為合法的字符集名稱。
語法
response.charset(charsetname)
參數(shù) | 描述 |
---|---|
charsetname | 為頁面規(guī)定字符集的字符串。 |
實(shí)例
如果 asp 頁面沒有設(shè)置 charset 屬性,那么 content-type 頭部會是這樣的:
content-type:text/html
如果我們使用了 charset 屬性:
<%response.charset="iso-8859-1"%>
content-type 頭部會是這樣的:
content-type:text/html; charset=iso-8859-1

相關(guān)文章
- ASP 表單
- ASP Browser Capabilities
- AJAX 數(shù)據(jù)庫
- ASP 快速參考
- ASP 總結(jié)
- ASP Close 方法
- ASP Read 方法
- ASP ReadAll 方法
- ASP IsRootFolder 屬性
- ASP Keys 方法
- ASP Status 屬性
- ASP BinaryWrite 方法
- ASP Clear 方法
- ASP Timeout 屬性
- ASP ScriptTimeout 屬性
- ASP MapPath 方法
- ASP DriveExists 方法
- ASP FileExists 方法
- ASP FolderExists 方法
- ASP GetFolder 方法