<كاملة كائن التطبيق المرجعي
جمع المحتويات يحتوي على كافة العناصر إلحاق التطبيق / جلسة خلال أمر النصي.
Tip: لإزالة العناصر من جمع المحتويات، استخدم إزالة وطرق RemoveAll.
بناء الجملة
Application.Contents(Key)
Session.Contents(Key)
معامل | وصف |
---|---|
key | مطلوب. اسم البند لاسترداد |
أمثلة لكائن التطبيق
مثال 1
لاحظ أن كلا من اسم وobjtest سيتم إلحاق جمع المحتويات:
<%
Application("name")="w3ii"
Set Application("objtest")=Server.CreateObject("ADODB.Connection")
%>
مثال 2
لحلقة من خلال جمع المحتويات:
<%
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
%>
مثال 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
أمثلة لكائن الدورة
مثال 1
لاحظ أن كلا من اسم وobjtest سيتم إلحاق جمع المحتويات:
<%
Session("name")="Hege"
Set Session("objtest")=Server.CreateObject("ADODB.Connection")
%>
مثال 2
لحلقة من خلال جمع المحتويات:
<%
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
%>
مثال 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
<كاملة كائن التطبيق المرجعي