I am working on a website that uses coldfusion for frontend, and asp wrappers
for middle layer and vb with sql at the backend. The application is about
creating users for a client. The end-user of the application will be presented
with a form which has fields like first name, last name email etc. for multiple
users. So basically this allows the user to create multiple users in one shot.
Now my question is how can I store all the user info entered for each user in
memory temporarily so that I can pass all of this info to the backend in one
shot and then backend can loop thru the whole batch and create new users in the
database.
Some ideas which I had are like creating a query set or create one long string
with all the user?s info. But I would like to consider any other ideas too.
I would really appreciate any help on this.
Thanks
Scott Stroz - 29 Sep 2004 20:09 GMT
You can create a structure or array to hold the info and then loop over the structure/query to pass the data along.
RayT - 29 Sep 2004 20:11 GMT
You can also just store the information in hidden fields on the form. This then
works when the user uses the back and forward buttons as all the information
relative to that form is indeed on the form.