최신 웹 개발 튜토리얼
 

ASP내용 컬렉션


<전체 응용 프로그램 개체 참조

목차 수집 스크립트 명령을 통해 응용 프로그램 / 세션에 추가 된 모든 항목이 포함되어 있습니다.

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

<전체 응용 프로그램 개체 참조