ASP Keys ਮੱਥਦਾ

ਪਰਿਭਾਸ਼ਾ ਅਤੇ ਵਰਤੋਂ

Keys ਮੱਥਦਾ ਵਿਭਾਗ Dictionary ਆਬਜੈਕਟ ਵਿੱਚ ਸਾਰੇ key ਦਾ ਮੰਡਲ ਵਾਪਸ ਦਿੰਦਾ ਹੈ。

ਗਿਆਨ ਪ੍ਰਕਿਰਿਆ:

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 />")
ਅੱਗੇ
set d=nothing
%>

ਆਉਟਪੁਟ:

ਕੀ ਮੁੱਲ:
c
i
s