Latest web development tutorials

ASP Contents.Remove方法

セッションオブジェクトリファレンス 完全なセッション・オブジェクト・リファレンス

Contents.Remove方法は、コンテンツコレクションから項目を削除します。

文法

Application.Contents.Remove(name|index)

Session.Contents.Remove(name|index)

参数 描述
name 要删除的项目的名称。
index 要删除的项目的索引号。


インスタンスのアプリケーションオブジェクトの

例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


セッションオブジェクトリファレンス 完全なセッション・オブジェクト・リファレンス