ASP Items Method用于返回Dictionary对象中当前所有项的数组。
用法:
DictionaryObject.Items
例:下面的代码演示了ASP Dictionary.Items方法。
ASP
<%
dim dict,arr,i
set dict=Server.CreateObject("Scripting.Dictionary")
'Add values to the dictionary
dict.Add "g","geeks"
dict.Add "c","coding"
dict.Add "p","placements"
'Getting the items of the dictionary
arr=dict.Items
Response.Write("The values in the dictionary are:")
'Looping through the items
for i=0 to dict.Count-1
Response.Write("<br> Value:" & arr(i))
next
set dict=nothing
%>
输出:
The values in the dictionary are: Value:geeks Value:coding Value:placements
相关用法
- ASP Flush用法及代码示例
- ASP End用法及代码示例
- ASP BinaryRead用法及代码示例
- ASP Write()用法及代码示例
- ASP BinaryWrite用法及代码示例
- ASP Clear用法及代码示例
- ASP AppendToLog用法及代码示例
- ASP AddHeader用法及代码示例
- ASP Contents.Remove用法及代码示例
- ASP Server.MapPath用法及代码示例
- ASP Server.Execute用法及代码示例
- ASP Server.Transfer()用法及代码示例
- ASP Server.HTMLEncode()用法及代码示例
- ASP CreateFolder()用法及代码示例
- ASP BuildPath用法及代码示例
- ASP GetParentFolderName用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 ASP Items Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。