當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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