ASP Contents.Remove 方法
❮ 完整的 Application 物件參考
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
❮ 完整的 Application 物件參考