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 对象参考手册
相关文章