版权所有2005 蒋氏企业 www.jiangshiqiye.com 黑ICP备06001768号
设计制作:比天电子
访问量:
<%
set rs_count=server.createobject("adodb.recordset")
sql_count="select * from t_count where id=1"
rs_count.open sql_count,conn,1,3
if not rs_count.eof then
tcount = cint(rs_count("num"))
end if
tcount = tcount +1
SqlStr="update t_count set num = '"&tcount&"' where id=1"
'response.write SqlStr
conn.Execute(SqlStr)
response.write tcount
rs_count.close
conn.close
%>
|