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
相关用法
- ASP Flush用法及代码示例
- ASP End用法及代码示例
- ASP BinaryRead用法及代码示例
- ASP Write()用法及代码示例
- ASP BinaryWrite用法及代码示例
- ASP Clear用法及代码示例
- ASP AppendToLog用法及代码示例
- ASP AddHeader用法及代码示例
- ASP Contents.Remove用法及代码示例
- ASP Server.HTMLEncode()用法及代码示例
- ASP Server.Transfer()用法及代码示例
- ASP Server.MapPath用法及代码示例
- ASP Server.Execute用法及代码示例
- ASP CreateFolder()用法及代码示例
- ASP BuildPath用法及代码示例
- ASP GetParentFolderName用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 ASP Exists Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。