指定的键存在吗?
代码:
<!DOCTYPE html><html>
<body>
<%
dim d
set d=Server.CreateObject("Scripting.Dictionary")
d.Add "n", "Norway"
d.Add "i", "Italy"
if d.Exists("n")= true then
Response.Write("Key exists.")
else
Response.Write("Key does not exist.")
end if
set d=nothing
%>
</body>
</html>
结果:
Key exists.
相关文章
- ASP.NET Web Pages WebSecurity 参考手册
- ASP.NET Razor C# 逻辑
- ASP.NET MVC 简介
- ASP.NET CheckBox 控件
- ASP.NET TableRow 控件
- WebSecurity CurrentUserId 属性
- WebSecurity HasUserId 属性
- WebSecurity ResetPassword 方法
- HTML InputCheckbox
- ASP.NET Calendar Caption 属性
- ASP.NET Calendar ShowTitle 属性
- ASP.NET Calendar TitleStyle 属性
- ASP.NET BorderWidth 属性
- ASP.NET CssClass 属性
- ASP.NET HyperLink ImageUrl 属性
- ASP.NET ImageButton PostBackUrl 属性
- ASP.NET BulletedList Target 属性
- ASP.NET TextBox Columns 属性
- ASP.NET TextBox Wrap 属性
- 当用户点击链接时发送查询信息