<Complete Session Object Référence
La collection Contents contient tous les éléments annexés à l'application / session via une commande de script.
Tip: Pour supprimer des éléments de la collection Contents, utilisez l' option Supprimer et méthodes removeAll.
Syntaxe
Application.Contents(Key)
Session.Contents(Key)
Paramètre | La description |
---|---|
key | Champs obligatoires. Le nom de l'élément à récupérer |
Exemples pour l'objet Application
Exemple 1
Notez que le nom et objtest seraient ajoutés à la collection Contents:
<%
Application("name")="w3ii"
Set Application("objtest")=Server.CreateObject("ADODB.Connection")
%>
exemple 2
Pour boucle à travers la collection Contents:
<%
for each x in Application.Contents
Response.Write(x & "=" & Application.Contents(x) & "<br>")
next
%>
or:
<%
For i=1 to Application.Contents.Count
Response.Write(i & "=" & Application.Contents(i) & "<br>")
Next
%>
exemple 3
<%
Application("date")="2001/05/05"
Application("author")="w3ii"
for each x in Application.Contents
Response.Write(x & "=" & Application.Contents(x) & "<br>")
next
%>
Output:
date=2001/05/05
author=w3ii
Exemples pour la session d'objets
Exemple 1
Notez que le nom et objtest seraient ajoutés à la collection Contents:
<%
Session("name")="Hege"
Set Session("objtest")=Server.CreateObject("ADODB.Connection")
%>
exemple 2
Pour boucle à travers la collection Contents:
<%
for each x in Session.Contents
Response.Write(x & "=" & Session.Contents(x) & "<br>")
next
%>
or:
<%
For i=1 to Session.Contents.Count
Response.Write(i & "=" & Session.Contents(i) & "<br>")
Next
%>
exemple 3
<%
Session("name")="Hege"
Session("date")="2001/05/05"
for each x in Session.Contents
Response.Write(x & "=" & Session.Contents(x) & "<br>")
next
%>
Output:
name=Hege
date=2001/05/05
<Complete Session Object Référence