Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

ASP PICS 属性


❮ 完整响应对象参考

PICS 属性将值追加到 PICS 标签响应标头。

注意:此属性将接受任何字符串值,无论它是否为有效的 PICS 标签。

什么是 PICS?

PICS (Platform for Internet Content Selection) 评级系统用于对网站内容进行评级。它看起来像这样

PICS-1.1 "http://www.rsac.org/ratingsv01.html" by "[email protected]" 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 "[email protected]" 标签作者
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 评级系统使用四个类别:暴力、裸露、性内容和语言。每个类别都分配了一个 0 到 4 之间的数字。0 表示页面不包含任何可能令人反感的內容,而 4 表示页面包含最高级别的可能令人反感的內容。

级别 暴力评级 裸露评级 性内容评级 语言评级
0 以下内容均无或与运动相关 以下内容均无 以下内容均无或无辜的接吻;浪漫 以下内容均无
1 对人类的伤害 暴露服装 热烈的接吻 轻微的粗俗语或脏话
2 对逼真物体的破坏 部分裸露 穿着衣服的性接触 中度粗俗语或脏话
3 攻击性暴力或对人类的死亡 正面裸露 非露骨的性行为 强烈的语言或仇恨言论
4 强奸或无端的、gratuitous 的暴力 正面裸露(构成挑逗性展示) 露骨的性行为或性犯罪 粗俗、低俗的语言或极端的仇恨言论

您可以通过两种方式获得网站的评级。您可以自己对网站进行评级,也可以使用评级提供商,如 RSACi。他们会要求您填写一些问题。填写完问题后,您将获得网站的评级标签。

Microsoft IE 3.0 及更高版本以及 Netscape 4.5 及更高版本支持内容评级。您可以在 IE 5 中设置评级,方法是选择“工具”和“Internet 选项”。选择“内容”选项卡,然后单击“启用”。当评级超过定义的级别时,内容顾问将阻止该网站。您可以在 Netscape 4.7 中设置评级,方法是选择“帮助”和“NetWatch”。

我们可以使用 META 标签或 response.PICS 属性为我们的网站添加评级。


语法

response.PICS(picslabel)

参数 描述
picslabel 格式正确的 PICS 标签

示例

对于包含以下内容的 ASP 文件

注意:由于 PICS 标签包含引号,因此您必须将引号替换为 " & chr(34) & "。

<%
response.PICS("(PICS-1.1 <http://www.rsac.org/ratingv01.html>
by " & chr(34) & "[email protected]" & 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))")
%>

将添加以下标头

PICS-label:(PICS-1.1 <http://www.rsac.org/ratingv01.html>
by "[email protected]"
for "http://www.somesite.com"
on "2002.10.05T02:15-0800"
r (n 2 s 0 v 1 l 2))

❮ 完整响应对象参考
×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.