ASP 添加方法
ASP Dictionary.Add 方法用于向 Dictionary 对象添加新的键值对。
句法:
DictionaryObject.Add(key, item)
参数:此方法有两个参数,如前所述,如下所述:
- key:它指定要插入的密钥的名称。 它是必需的参数。
- item:它指定必须与键值对中的键关联的值。
示例:下面的代码演示了 ASP Dictionary.Add 方法。
ASP
Dim dict
'Create a new dictionary
Set dict=Server.CreateObject("Scripting.Dictionary")
'Add values to the dictionary
dict.Add "w","white"
dict.Add "b","blue"
dict.Add "br","Brown"
dict.Add "p","Pink"
'Retrieve some values from the dictionary
Response.Write("Value of key 'br' is: " & dict.Item("br"))
Response.Write("
Value of key 'p' is: " & dict.Item("p"))
%>
输出:
Value of key 'br' is: Brown
Value of key 'p' is: Pink