主题:  菜鸟一个,问个ASP的问题

不是高手

职务:普通成员
等级:3
金币:5.0
发贴:1352
#12005/2/24 9:09:44
按照某个条件搜索到一组数据后,怎样能很快知道其中某条纪录是位于这组纪录中的第几条?



wangs

职务:普通成员
等级:1
金币:0.0
发贴:5
#22005/4/4 10:11:03
我也不知道 用笨方法吧
rs.movefirst
for i=1 to rs.recordcount
if rs("***")=word then
response.write i
exit for
end if
rs.movenext
if rs.eof then
exit for
end if
next