ASP Contents.Remove 方法
asp contents.remove 方法

contents.remove 方法從 contents 集合中刪除一個項目。
語法
application.contents.remove(name|index)
session.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) & "
")
next
%>
輸出:
test1=first test
test3=third test
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) & "
")
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) & "
")
next
%>
輸出:
test1=first test
test3=third test
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) & "
")
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) & "
")
next
%>
輸出:
test1=first test
test3=third test
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) & "
")
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) & "
")
next
%>
輸出:
test1=first test
test3=third test
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) & "
")
next
%>
輸出:
test1=first test
test3=third test

相關文章
- ASP Application 對象
- ASP 引用文件
- ASP 使用 CDOSYS 發送電子郵件
- ASP Drive 對象
- ASP Folder 對象
- ASP 實例
- ASP Name 屬性
- ASP Size 屬性
- ASP Copy 方法
- ASP IsRootFolder 屬性
- ASP Item 屬性
- ASP Remove 方法
- ASP Buffer 屬性
- ASP Flush 方法
- ASP StaticObjects 集合
- ASP CreateObject 方法
- ASP DeleteFile 方法
- ASP DriveExists 方法
- ASP GetDriveName 方法
- ASP MoveFolder 方法