ASP CompareMode 屬性
asp comparemode 屬性

comparemode 屬性設(shè)置或返回在 dictionary 對象中的比較鍵的比較模式。
語法
dictionaryobject.comparemode[=compare]
參數(shù) | 描述 |
---|---|
compare | 可選的。規(guī)定比較模式。 可采用下列值之一: 0 = vbbinarycompare - 二進制比較1 = vbtextcompare - 文本比較 2 = vbdatabasecompare - 數(shù)據(jù)庫比較 |
實例
<%
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
%>

相關(guān)文章
- ASP ASPError 對象
- ASP FileSystem 對象
- ASP Dictionary 對象
- ASP Content Linking
- AJAX 數(shù)據(jù)庫
- 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 方法