×
ASP 教程ASP 简介ASP 安装ASP 语法ASP 变量ASP 程序ASP 表单ASP CookiesASP SessionASP ApplicationASP #includeASP Global.asaASP 发送电子邮件

ASP 对象

ASP ResponseASP RequestASP ApplicationASP SessionASP ServerASP ErrorASP FileSystemASP TextStreamASP DriveASP FileASP FolderASP DictionaryASP ADO

ASP 组件

ASP AdRotatorASP BrowserCapASP Content LinkingASP Content Rotator

ASP 与 AJAX

AJAX 简介AJAX ASPAJAX 数据库

ASP 总结 & 实例

ASP 快速参考ASP 总结ASP 实例

ASP Contents.Remove 方法


ASP Application 对象ASP Application 对象


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

ASP Application 对象ASP Application 对象


分类导航

关注微信下载离线手册

bootwiki移动版 bootwiki
(群号:472910771)