ASP Contents.Remove 方法

2018-09-21 11:13 更新

ASP Contents.Remove 方法


Session 對象參考手冊 完整的 Session 對象參考手冊

Contents.Remove 方法從 Contents 集合中刪除一個項目。

語法

Application.Contents.Remove(name|index)

Session.Contents.Remove(name|index)

參數(shù) 描述
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


Session 對象參考手冊 完整的 Session 對象參考手冊
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號