ASP Contents.Remove ·½·¨
Contents.Remove ·½·¨´Ó Contents ¼¯ºÏÖÐɾ³ýÒ»¸öÏîÄ¿¡£
Óï·¨
Application.Contents.Remove(name|index) Session.Contents.Remove(name|index)
| ²ÎÊý | ÃèÊö |
|---|---|
| name | Ҫɾ³ýµÄÏîÄ¿µÄÃû³Æ¡£ |
| index | Ҫɾ³ýµÄÏîÄ¿µÄË÷ÒýºÅ¡£ |
Õë¶Ô Application ¶ÔÏóµÄʵÀý
ʵÀý 1
<%
Application("test1")=("First test")
Application("test2")=("Second test")
Application("test3")=("Third test")
Application.Contents.Remove("test2")
for each x in Application.Contents
Response.Write(x & "=" & Application.Contents(x) & "<br />")
next
%>
Êä³ö£º
test1=First test test3=Third test
ʵÀý 2
<%
Application("test1")=("First test")
Application("test2")=("Second test")
Application("test3")=("Third test")
Application.Contents.Remove(2)
for each x in Application.Contents
Response.Write(x & "=" & Application.Contents(x) & "<br />")
next
%>
Êä³ö£º
test1=First test test3=Third test
Õë¶Ô Session ¶ÔÏóµÄʵÀý£º
ʵÀý 1
<%
Session("test1")=("First test")
Session("test2")=("Second test")
Session("test3")=("Third test")
Session.Contents.Remove("test2")
for each x in Session.Contents
Response.Write(x & "=" & Session.Contents(x) & "<br />")
next
%>
Êä³ö£º
test1=First test test3=Third test
ʵÀý 2
<%
Session("test1")=("First test")
Session("test2")=("Second test")
Session("test3")=("Third test")
Session.Contents.Remove(2)
for each x in Session.Contents
Response.Write(x & "=" & Session.Contents(x) & "<br />")
next
%>
Êä³ö£º
test1=First test test3=Third test