HttpResponse.Pics(String) Méthode

Définition

Ajoute un en-tête PICS-Label HTTP au flux de sortie.

public:
 void Pics(System::String ^ value);
public void Pics (string value);
member this.Pics : string -> unit
Public Sub Pics (value As String)

Paramètres

value
String

Chaîne à ajouter à l'en-tête PICS-Label.

Exemples

L’exemple suivant est une page ASP.NET qui affiche une image. Le code de page appelle la Pics méthode pour définir l’en-tête HTTP PICS-Label de la réponse. La chaîne transmise en tant que paramètre à la Pics méthode représente une étiquette d’évaluation générée à partir du site Web ICRA (Internet Content Rating Association).

<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">

    // When this page is loaded, the Pics method
    // sets the PICS-Label header for the response.
    private void Page_Load(object sender, EventArgs e)
    {
        Response.Pics( 
          "(pics-1.1 <http://www.icra.org/ratingsv02.html> " + 
          "comment <ICRAonline EN v2.0> " + 
          "l r (nz 1 vz 1 lz 1 oz 1 cz 1) " + 
          "<http://www.rsac.org/ratingsv01.html> " +
          " l r (n 0 s 0 v 0 l 0))");
    }

</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>ASP.NET Example</title>
</head>
<body>
    <form id="form1" runat="server">
        <img height="75%" src="animated.gif" width="100%" alt="An animated GIF"/>
    </form>
</body>
</html>
<%@ Page Language="VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">

    ' When this page is loaded, the Pics method
    ' sets the PICS-Label header for the response.    
    Private Sub Page_Load(sender As Object, e As EventArgs)       
        Response.PICS( _
          "(pics-1.1 <http://www.icra.org/ratingsv02.html> " & _
          "comment <ICRAonline EN v2.0> " & _
          "l r (nz 1 vz 1 lz 1 oz 1 cz 1) " & _
          "<http://www.rsac.org/ratingsv01.html> " & _
          "l r (n 0 s 0 v 0 l 0))")
    End Sub

</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>ASP.NET Example</title>
</head>
<body>
    <form id="form1" runat="server">
        <img height="75%" src="animated.gif" width="100%" alt="An animated GIF"/>
    </form>
</body>
</html>

Remarques

Platform for Internet Content Selection (PICS) est une norme W3C (World Wide Web Consortium) pour l’étiquetage de contenu. PICS est essentiellement un langage permettant de créer un système d’évaluation.

N’importe quelle valeur peut être une étiquette PICS ; ASP.NET ne valide pas l’étiquette. La longueur maximale de la chaîne est de 255 caractères. Pour plus d’informations sur les normes et la syntaxe PICS, consultez le site web World Wide Web Consortium .

S’applique à