Как создать пары ключ / значение в ASP? - PullRequest
2 голосов
/ 06 сентября 2010

Как мне сделать что-то подобное в ASP / VBScript?

Dim pairs
pairs= Dictionary(String, Integer)()
For Each item As String In storage
    Dim temp
    temp = item.Split(".")
    pairs.Add(temp(0), temp(1))
Next

1 Ответ

3 голосов
/ 06 сентября 2010

Используйте объект «Scripting.Dictionary», например:

set objPairs = Server.CreateObject("Scripting.Dictionary")
objPairs.add temp(0), temp(1)
...