ASP CompareMode 属性
asp comparemode 属性
完整的 dictionary 对象参考手册comparemode 属性设置或返回在 dictionary 对象中的比较键的比较模式。
语法
dictionaryobject.comparemode[=compare]
参数 | 描述 |
---|---|
compare | 可选的。规定比较模式。 可采用下列值之一: 0 = vbbinarycompare - 二进制比较1 = vbtextcompare - 文本比较 2 = vbdatabasecompare - 数据库比较 |
实例
<%
dim d
set d=server.createobject("scripting.dictionary")
d.comparemode=1
d.add "n","norway"
d.add "i","italy"
'the add method will fail on the line below!
d.add "i","ireland" 'the letter i already exists
%>
dim d
set d=server.createobject("scripting.dictionary")
d.comparemode=1
d.add "n","norway"
d.add "i","italy"
'the add method will fail on the line below!
d.add "i","ireland" 'the letter i already exists
%>
完整的 dictionary 对象参考手册
相关文章
- ASP ASPError 对象
- ASP FileSystem 对象
- ASP Dictionary 对象
- ASP Content Linking
- AJAX 数据库
- ASP 教程
- 在自己的 PC 上运行 ASP
- ASP ParentFolder 属性
- ASP Delete 方法
- ASP CreateTextFile 方法
- ASP Items 方法
- ASP AppendToLog 方法
- ASP Flush 方法
- ASP Form 集合
- ASP QueryString 集合
- ASP ServerVariables 集合
- ASP Lock 和 Unlock 方法
- ASP GetLastError 方法
- ASP CopyFolder 方法
- ASP GetExtensionName 方法