Platform SDK: IIS SDK |
The Contents.Remove method deletes an item from a collection.
Application.Contents.Remove(name|index)
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.
The following example adds two items to the Application.Contents collection and removes the second one.
<%
Application("strFirst")=("First thing")
Application("strSecond")=("Second thing")
Application.Contents.Remove("strFirst")
%>
Platforms: Windows 2000 with IIS 5.0 installed,
Windows XP with IIS 5.1 installed,
Windows Server 2003 family with IIS 6.0 installed
What did you think of this topic? |
Order a Platform SDK CD |