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) & "<br>")
 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) & "<br>")
 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) & "<br>")
 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) & "<br>")
 next
 %>

 输出:

 test1=First test
 test3=Third test

Session 对象参考手册 完整的 Session 对象参考手册

新闻动态 联系方式 广告合作 招聘英才 安科实验室 帮助与反馈 About Us

Copyright © 2013 - 2019 Ancii.com All Rights Reserved京ICP备18063983号-5 京公网安备11010802014868号