Forum Moderators: open
The information submitted after each form is stored in a database. This can be used to stop any duplicate records being created, but I haven't been able to work out how to check for such a thing on the first form as it could end up searching for the booking before it was created.
It has been suggested that I use session variables such as cookies, but I haven't had much luck with them (IE6 in particular seems to not like them, even on this site.)
I have been on other Ecommerce sites that let you go between forms to change order details, it is confusing me a lot that's all.
Thanks.
MS recommends not using the sessionid as a PK identifier in a database because if the machine is restarted the possibility exists that it could be duplicated.
[microsoft.com...]
Then, if the person making the booking decided they wanted to change something on the previous form, they could go back and change it and when they click 'continue' it would go to the next screen without inserting a duplicate record.
Thanks.
In my case it led to them booking three times on the same BookingID (at least it worked.)
Thanks.