Version: 3.0
The Contents.Remove method is used to remove a single item from a Contents collection.
The Contents.Remove method is used to delete one specified item in the
Application.Contents collection.
You may use only one of the two possible choices for the mandatory argument.
<%
Application("name") = "Application Maker"
Application("publishdate") = "05/15/01"
Application("author") = "DevGuru"
Set Application("Obj1") = Server.CreateObject("ADODB.Connection")
Application.Contents.Remove(1)
Application.Contents.Remove("publishdate")
author=DevGuru
Obj1 is an object.