ASP Keys Method
ການອະທິບາຍ ແລະ ການນໍາໃຊ້
Keys ມືຖືກການກັບຄືນຄືວັນຂອງຈຸດສະຫຼາກຂອງ DictionaryObject.
ວິນຍານ:
DictionaryObject.Keys
ພິມຂໍ້ມູນ
<% dim d,a,i set d=Server.CreateObject("Scripting.Dictionary") d.Add "c","China" d.Add "i","Italy" d.Add "s","Sweden" Response.Write("<p>Key values:</p>") a=d.Keys for i=0 to d.Count-1 Response.Write(a(i)) Response.Write("<br />") next set d=nothing %>
ຄຳນວນອອກ:
ຄວາມລະບຸ Key values: c i s