From http://www.w3schools.com (Copyright Refsnes Data)
Complete Dictionary Object Reference
The Remove method removes one specified key/item pair from the Dictionary object.
| DictionaryObject.Remove(key) |
| Parameter | Description |
|---|---|
| key | Required. The key associated with the key/item pair to remove |
|
<% dim d,a,i set d=Server.CreateObject("Scripting.Dictionary") d.Add "n","Norway" d.Add "i","Italy" d.Add "s","Sweden" d.Remove("n") Response.Write("<p>Key values:</p>") a=d.Keys for i=0 to d.Count-1 Response.Write(a(i)) Response.Write("<br />") next set d=nothing %> Output: Key values: i s |
Complete Dictionary Object Reference
From http://www.w3schools.com (Copyright Refsnes Data)