Platform SDK: IIS SDK

      [IIS 5.0] [IIS 5.1] [IIS 6.0]

Session.Contents.Remove

The Remove method deletes a specific item from the Session object's Contents collection.

Syntax

Session.Contents.Remove( Item|Index )

Parameter

Item
The name of the member to remove from the collection.
Index
The index entry for the member to remove from the collection.

Remarks

The Contents.Remove method takes either a string or an integer as an input parameter. If the input parameter is a string, the method searches the contents collection for an item with that name and removes it. If the input parameter is an integer, the method counts that number of items from the start of the collection and removes the corresponding item.

Example

The following example adds and removes a variable named myName to the Session.Contents collection.

<% 

  Session("myName") = " "

  Session.Contents.Remove("myName")

%>

Applies To

Session Object

See Also

Requirements

Platforms: Windows 2000 with IIS 5.0 installed, Windows XP with IIS 5.1 installed, Windows Server 2003 family with IIS 6.0 installed

Platform SDK Release: February 2003
What did you think of this topic?
Order a Platform SDK CD