黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

ASP Contents.Remove 方法

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) & "
")
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

針對 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

實例 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 對象參考手冊 完整的 session 對象參考手冊
相關(guān)文章