精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

ASP Contents.Remove 方法

asp contents.remove 方法

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

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) & "
")
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 對象參考手冊
相關文章