当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


ASP Add用法及代码示例


ASP Dictionary.Add方法用于将新的键值对添加到Dictionary对象。

用法:

DictionaryObject.Add(key, item)

参数:此方法具有上述和以下所述的两个参数:

  • key:它指定要插入的 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("<br>Value of key 'p' is:" & dict.Item("p"))
%>

输出:

Value of key 'br' is:Brown
Value of key 'p' is:Pink

相关用法


注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 ASP Add Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。