When I use the excute property of the connection object on an asp page to insert a new record into a sql table, it creates two records.
The key field "id" is a int field with Identity seed of 1.
The code I am using is
dcndb.Execute "insert into csc_workload_resp (userid,subject,sub_date,sub_row)" & _
" values('aa',1,getdate(),'ac')"
dcndb is the connection object.
The key field "id" is a int field with Identity seed of 1.
The code I am using is
dcndb.Execute "insert into csc_workload_resp (userid,subject,sub_date,sub_row)" & _
" values('aa',1,getdate(),'ac')"
dcndb is the connection object.