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
Session.Contents collection.
You may use only one of the two possible choices for the mandatory argument.
<%
Session("name") = "Session Maker"
Session("publishdate") = "05/15/01"
Session("author") = "DevGuru"
Session.Contents.Remove(1)
Session.Contents.Remove("publishdate")
author=DevGuru