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
相关用法
- ASP Flush用法及代码示例
- ASP End用法及代码示例
- ASP BinaryRead用法及代码示例
- ASP Write()用法及代码示例
- ASP BinaryWrite用法及代码示例
- ASP Clear用法及代码示例
- ASP AppendToLog用法及代码示例
- ASP AddHeader用法及代码示例
- ASP Contents.Remove用法及代码示例
- ASP Server.HTMLEncode()用法及代码示例
- ASP Server.Transfer()用法及代码示例
- ASP Server.MapPath用法及代码示例
- ASP Server.Execute用法及代码示例
- ASP CreateFolder()用法及代码示例
- ASP BuildPath用法及代码示例
- ASP GetParentFolderName用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 ASP Add Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。