ASP Contents.Remove 方法
asp contents.remove 方法
完整的 session 对象参考手册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
完整的 session 对象参考手册
相关文章
- 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 方法