profwannabe
Programmer
I have a long iterative form to build a large record submission (the information must be finalized prior to submission so iterative submissions are not possible). However, the user may need to exit from that form to add some additional data to the database, then return to the original form and continue the process. In that case, I pass the existing form parameters to the sub-form as hidden values. Then the user submits new data. This takes them to an "action page" that performs the insert query, grabs some new information based on that submission, and appends it to some of the old info. Now I need to return to the old form with both the old form parameters and the modified one preserved.
(1)One option is to have a "return to form" form submission in which I pass the form variables. (2)Another is to pass the values in the url. (3)A third I can think of is to set session variables.
I would like to automate this step (eliminate the need for option 1), not pass the values in the url (for security reasons, option 2), and not have to set session variables (option 3). Is there a way (a la cflocation) to push the user back to the old form with the form.parameter values preserved?
Thanks in advance.
(1)One option is to have a "return to form" form submission in which I pass the form variables. (2)Another is to pass the values in the url. (3)A third I can think of is to set session variables.
I would like to automate this step (eliminate the need for option 1), not pass the values in the url (for security reasons, option 2), and not have to set session variables (option 3). Is there a way (a la cflocation) to push the user back to the old form with the form.parameter values preserved?
Thanks in advance.