asp pics 屬性

pics 屬性可向響應頭部的 pics 標記追加值。
注意:此屬性可接受任何字符串值,無論是否是合法的 pics 標記。
什么是 pics ?
pics(platform for internet content selection)分級系統用于對網站內的內容進行分級。它看起來類似這樣:
pics-1.1 "http://www.rsac.org/ratingsv01.html" by "your@name.com" for "http://www.somesite.com" on "2002.10.05t02:15-0800" r (n 0 s 0 v 0 l 0)
部分 | 描述 |
---|---|
pics-1.1 | pics 版本號 |
"http://www.rsac.org/ratingsv01.html" | 分級機構 |
by "your@name.com" | 標簽的作者 |
for "http://www.somesite.com" | 已被分級的文檔的 url |
on "2002.10.05t02:15-0800" | 失效日期 |
r (n 0 s 0 v 0 l 0) | 等級 |
最流行的分級系統之一是 rsaci(recreational software advisory council on the internet)。rsaci 使用四種類型:violence(暴力)、nudity(裸體)、sex(性)以及 language(不雅言論)。數字從 0 到 4分別分配給了這四種類型。0 表示頁面不包含任何攻擊性的內容,4 表示潛在攻擊性內容的最高級別。
級別 | 暴力分級 | 裸體分級 | 性分級 | 言論分級 |
---|---|---|---|---|
0 | none of the below or sports related | none of the below | none of the below or innocent kissing; romance | none of the below |
1 | injury to human being | revealing attire | passionate kissing | mild expletives |
2 | destruction of realistic objects | partial nudity | clothed sexual touching | moderate expletives or profanity |
3 | aggressive violence or death to humans | frontal nudity | non-explicit sexual acts | strong language or hate speech |
4 | rape or wanton, gratuitous violence | frontal nudity (qualifying as provocative display) | explicit sexual acts or sex crimes | crude, vulgar language or extreme hate speech |
您有兩種方式為您的網站獲得評級。您可以自己為網站評級,或者利用一個評級提供者,比如 rsaci 。他們會要求您填寫一些問題。在填寫完成后,您會得到用于您的網站的分級標簽。
microsoft ie 3.0 及更高的版本和 netscape 4.5 及更高的版本均支持內容分級。您可以在 ie 5 中設置分級,選擇工具菜單中的 internet 選項。選擇內容選項卡,然后單擊啟用。當等級超過了所定義的級別,內容顧問就會阻止此網站。在 netscape 4.7 中,您可以通過選擇 help 和 netwatch 來設置分級。
我們可以使用 meta 標簽或者 response.pics 屬性為網站添加分級。
語法
參數 | 描述 |
---|---|
picslabel | 格式正確的 pics 標簽。 |
實例
asp 文件包含以下代碼:注意:由于 pics 標簽含有引號,您必須把引號替換為 " & chr(34) & ".
response.pics("(pics-1.1
by " & chr(34) & "your@name.com" & chr(34) &
" for " & chr(34) & "http://www.somesite.com" & chr(34) &
" on " & chr(34) & "2002.10.05t02:15-0800" & chr(34) &
" r (n 2 s 0 v 1 l 2))")
%>
被添加的頭部:
by "your@name.com"
for "http://www.somesite.com"
on "2002.10.05t02:15-0800"
r (n 2 s 0 v 1 l 2))

- ASP 表單
- ASP Server 對象
- ASP Drive 對象
- ASP Dictionary 對象
- AJAX 數據庫
- ASP 總結
- ASP Column 屬性
- ASP Read 方法
- ASP DateLastAccessed 屬性
- ASP SubFolders 集合
- ASP Exists 方法
- ASP Clear 方法
- ASP QueryString 集合
- ASP Contents 集合
- ASP Timeout 屬性
- ASP ScriptTimeout 屬性
- ASP FolderExists 方法
- ASP GetDriveName 方法
- ASP GetExtensionName 方法
- ASP GetTempName 方法