当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


ASP Dictionary.Keys用法及代码示例


GeeksforGeeks - Summer Carnival Banner

ASP Dictionary.Keys方法用于返回Dictionary对象中所有键的数组。

用法:

DictionaryObject.Keys

示例代码:下面的代码演示了ASP Keys方法。

ASP

<%dim d,a,iset d=Server.CreateObject("Scripting.Dictionary")d.Add "m","mango"d.Add "e","Elephant"d.Add "n","Nagaland"  Response.Write("<p>Key values:</p>")a=d.Keysfor i=0 to d.Count-1  Response.Write(a(i))  Response.Write("<br>")next  set d=nothing%>

输出:

Key values:

m
e
n

相关用法


注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 ASP Dictionary.Keys Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。