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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。