scripting.dictionary物件是asp指令碼執行時庫附帶的activex物件,是集合的一種類似has表,用於儲存資料鍵和專案的鍵值對。
dictionary物件使用例項
<%
dim dic
set dic = createobject("scripting.dictionary") '建立鍵值對物件
dic.add "1","athens" ' 新增鍵值和鍵值內容.
dic.add "2","belgrade"
dic.add "3", "cairo"
』迴圈顯示鍵值對內容
if isnull(dic) = false then
for each objdic in dic
response.write(objdic & " = ")
response.write(dic.item(objdic) & "
")next
end if
%>
asp中Dictionary 資料字典 的使用
用法如下 set session user server.createobject scripting.dictionary 建立 session user add name username 新增 s session user name 取得值 blnisthere session user ex...
C 中的Dictionary簡介
簡介 在c 中,dictionary提供快速的基於鍵值的元素查詢。當你有很多元素的時候可以使用它。它包含在system.collections.generic名空間中。在使用前,你必須宣告它的鍵型別和值型別。詳細說明 必須包含名空間system.collection.generic dictiona...
C 中的Dictionary簡介
簡介 在c 中,dictionary提供快速的基於鍵值的元素查詢。當你有很多元素的時候可以使用它。它包含在system.collections.generic名空間中。在使用前,你必須宣告它的鍵型別和值型別。詳細說明 必須包含名空間system.collection.generic dictiona...