It can be done but you will have to use a loop of sorts.
This is all off the top of my head.
Give me some time over the weekend and I can do a sample for you.
But what you will have to do is use read the info into variables (which can be a array) then you start a loop and issue 'INSERT' statements to the database.
This will be very quick.
I have it on my intranet site, but is only with one record but from
the time the user clicks Update till the page load again in only
1 sec. Added this is only over the network.
But give me some time and I will have something for you.
Have Fun ;-)
Maartin
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
if it ain't broke don't fix, rewrite it.
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Correct me if I'm wrong but from what I understand is that you want to insert and or update, the record depending on if the records exist in the database?
If this is the case there are various way of doing it. The best one is that when you load the first page with all the textboxes you must load the data.
This means that the user(s) can edit the data, this also means that you have to create a hidden textbox on the first page with and unique value to the record. The user(s) can then edit the text, when the user(s) clicks on the update button you will have to put a check in the 'save' page that checks if the hidden field has a value you must do an update else you must do an insert.
The ext way to do it is to query the database on the 'save' page and check if the record does exist with the info from the previous page. If it does do an update else do an insert.
Hope this helps you.
Have Fun ;-)
Maartin
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
if it ain't broke don't fix, rewrite it.
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=