codecamp

ASP CompareMode 属性

ASP CompareMode 属性


Dictionary 对象参考手册 完整的 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
%>


Dictionary 对象参考手册 完整的 Dictionary 对象参考手册
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

ASP 实例

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }