|
|
|
|
|
|
|
|
| Copyright©2004 www.ccfn.cn All rights reserved |
网管邮箱: |
 |
投稿邮箱: |
 |
|
中国合作金融网版权所有 TEL:010-51171600 FAX:010-51171629 网管QQ:11943767 |
|
通用网址:中国合作金融网 网络实名:中国合作金融网 |
京ICP备05001320号 本站总访问量: 00<%
Set Rs_count = Server.CreateObject("ADODB.Recordset")
Rs_count.ActiveConnection = MM_connsq1_STRING
Rs_count.Source = "SELECT * FROM 统计"
Rs_count.CursorType = 0
Rs_count.CursorLocation = 2
Rs_count.LockType = 1
Rs_count.Open()
count_f = Rs_count.Fields.Item("计数").Value
Response.Write(count_f)
Rs_count.Close()
Set MM_editCmd = Server.CreateObject("ADODB.Command")
MM_editCmd.ActiveConnection = MM_connsq1_STRING
MM_editCmd.CommandText = "update 统计 set 计数 = "&count_f+1&""
MM_editCmd.Execute
MM_editCmd.ActiveConnection.Close
response.write err.description
%> |