hxfly你说的哪个不对啊!!!
表名为user表单项为userid,zhuguanid,
userid zhuguanid
1 0
2 1
3 1
如何将第2行,第3行以及后面很多的zhuguanid=userid的行数统计啊?
根据你说的这个
一,先把符合条件的记录选择出来
"select * from table where userid=zhuguanid"
二,进行循环
dim total=0
if not (rs.eof and rs.bof) then
do while not rs.eof
total=totaal+1
rs.movenext
loop
end if
三 ,显示
<%=total%>
肯定不显示结果的啊!