先把数据库数据读取出来,然后再重新写进去,在读出来和写进去这中间做相加处理
<%
Set rs=Server.CreateObject("ADODB.RecordSet")
rs.open "select * from Usernames where UserName='"&username&"' and
Password='"&password&"'",conn,3,3
if not(rs.bof and rs.eof) then
rs("shuju")=rs("shuju")+1
rs.update
end if
rs.close
set rs=nothing
%>