<Komple Oturum Nesnesi Referans
İçindekiler toplama bir komut dosyası komutu ile uygulama / oturuma eklenen tüm öğeleri içerir.
Tip: İçindekiler koleksiyonundan öğeleri kaldırmak kaldırın ve RemoveAll yöntemlerini kullanın.
Sözdizimi
Application.Contents(Key)
Session.Contents(Key)
Parametre | Açıklama |
---|---|
key | Gereklidir. öğenin adı almak için |
Uygulama Nesne için örnekler
Örnek 1
isim ve objtest hem İçindekiler koleksiyonuna ekleniyordu dikkat edin:
<%
Application("name")="w3ii"
Set Application("objtest")=Server.CreateObject("ADODB.Connection")
%>
Örnek 2
İçindekiler topluluk içinde döngü için:
<%
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
%>
Örnek 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
Oturum Nesne için örnekler
Örnek 1
isim ve objtest hem İçindekiler koleksiyonuna ekleniyordu dikkat edin:
<%
Session("name")="Hege"
Set Session("objtest")=Server.CreateObject("ADODB.Connection")
%>
Örnek 2
İçindekiler topluluk içinde döngü için:
<%
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
%>
Örnek 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
<Komple Oturum Nesnesi Referans