Najnowsze tutoriale tworzenie stron internetowych
 

ASP Usuń Method


<Pełna Słownik Object Reference

Metoda Remove usuwa jedną określoną parę klucz / elementu z obiektu Dictionary.

Składnia

DictionaryObject.Remove(key)

Parametr Opis
key Wymagany. Kluczem związane z pary klucz / poz usunąć

Przykład

<%
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

<Pełna Słownik Object Reference