So these 6 forms you are submitted. Does each one have it's own seperate .asp page it is submitted to for saving?
Or are they all being submitted to the same .asp page for processing?
Also I assume that if each form is different you will have different processing rules for each one as well.
There is alot of possible problems that could exist here. I would need to know alot more about what your doing on the processing side and how\where each form is submitted (what each form action is = to).
Also I would need to see the code near or around the lines where the error is occurring.
Also a silly question maybe, but if you are submitting 6 forms on a single page with one button click, why not just make them all one form?
One more thing....your subject seems to be asking how to insert multiple records with 1 sql. The easiest way to do that is setting your SQL in a loop
'for example this would insert 6 records with the same values. but Im not sure this is what your talking about. If you need to change the MyTextValue each time then just do a SELECT CASE or something with this to determine which sql to use.
-
-
sSQL = "Insert into MyTable (column1) VALUES ('" & MyTextValue & "')"
-
-
for x = 0 to 5
-
DbConnection.Execute sSQL
-
next
-