第一种办法:最直接,在数据表里直接给出默认值,0 第二, if rs("hits") = "" then conn.execute"update 2006book set hits=0 where id=" & id else conn.execute"update 2006book set hits=hits+1 where id=" & id end if
第一种办法:最直接,在数据表里直接给出默认值,0 第二, if rs("hits") = "" then conn.execute"update 2006book set hits=0 where id=" & id else conn.execute"update 2006book set hits=hits+1 where id=" & id end if
第一种办法是可以用,但太麻烦了 第二种方法试了,但没用,现在是if rs("hits") = "" then IF判断的条件是假的,可以数据库里hits字段里没有数据,不知怎么回事了