ASP执行增加语句时,插入了2条语句 在asp程序中,上传文件时.执行插入数据库语句,却发现一条数据被插入了2次.就连增加的时间(getdate())也是一样的,就是自动增长id不一样.2条记录的其他数据都一样.
案例:
a b c d inserttime
1 jack 18 China 2013-02-28 14:40:001
2 jack 18 China 2013-02-28 14:40:001
Sql="Select * From Orders Where TONumber='" & TONumber & "'"
Set Rs=Conn.Execute(Sql)
Sql='insert order.............'
If Rs.Eof Then
Conn.Execute(Sql)'这里是第一次执行了上面的Sql='insert order.............