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


ASP Exists用法及代码示例


ASP Exists方法用于返回一个布尔值,如果指定的键存在,则该布尔值返回true,否则返回false。

用法:

DictionaryObject.Exists(key)

参数:该方法具有上面提到的和下面讨论的单个参数:

  • Key:它指定要在字典中搜索的键值的名称。

例:下面的代码演示了ASP Dictionary.Exists方法。

ASP


<%
dim dict
  
'Create a new dictionary
set dict=Server.CreateObject("Scripting.Dictionary")
  
'Add values to the dictionary
dict.Add "g","geeks"
dict.Add "p","placements"
dict.Add "c","competitive"
  
'Check if the key exists in the dictionary
if dict.Exists("g")=true then
  Response.Write("The 'g' key exists in the dictionary")
else
  Response.Write("The 'g' key does not exist in the dictionary")
end if
  
Response.Write("<br>")
  
'Check for another key in the dictionary
if dict.Exists("m")=true then
  Response.Write("The 'm' key exists in the dictionary")
else
  Response.Write("The 'm' key does not exist in the dictionary")
end if
  
set dict=nothing
%>

输出:

The 'g' key exists in the dictionary
The 'm' key does not exist in the dictionary 

相关用法


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