computergeek
Programmer
Hello,
I have setup a Company table (SQL Server 2000) and have set the company_id column to be an Identity column. Within the recordset DTC on my ASP page I specify a select statement for the company table leaving the company_id out. I am using the Formmanager DTC to enter the data. Sequence of events:
1. Add button is clicked which does a addrecord(), then a movelast(). The entry fields are cleared...
2. Data is entered within textboxes bound to recordset table columns
3. Save button is clicked which does an Updaterecord()
ASP page now goes off into la la land and never returns?! I tried doing a Requery() upon Save just after the updaterecord()... but it made no difference. If this doesn't work soon, we are going to switch to using an insert trigger to manage incrementing the ID, or ditch the Formmanger DTC. Does anyone know what is happening? And better yet what to do to fix it?
Thanks in advance for the information.
I have setup a Company table (SQL Server 2000) and have set the company_id column to be an Identity column. Within the recordset DTC on my ASP page I specify a select statement for the company table leaving the company_id out. I am using the Formmanager DTC to enter the data. Sequence of events:
1. Add button is clicked which does a addrecord(), then a movelast(). The entry fields are cleared...
2. Data is entered within textboxes bound to recordset table columns
3. Save button is clicked which does an Updaterecord()
ASP page now goes off into la la land and never returns?! I tried doing a Requery() upon Save just after the updaterecord()... but it made no difference. If this doesn't work soon, we are going to switch to using an insert trigger to manage incrementing the ID, or ditch the Formmanger DTC. Does anyone know what is happening? And better yet what to do to fix it?
Thanks in advance for the information.