asp中如何计算一个字符出现的次数/?
我用的方式如下。,但作判断时不起作用。求帮助高手
rs11.open sql11,conn,1,1
do while not rs11.eof
sortpath=rs("sortpath")
str=sortpath
a=Split(str ,",")
Response.Write ( UBound(a)) ---这里可以得出出现的次数
x=CInt(UBound(a))
if x=3 then ---这里的判断就得不出结果,总是执行else后的结果
Response.Write (x)
else
end if