Passing data between pages
Hello,
I have two pages, form.cfm, and validation.cfm. I wish to check in validation the values submitted by form. In case of error or wrong values, I'd redirect the user back to form, with wrong fields highlighted. Now, I don't know how to pass these values between the pages. If I put them into session, the user will keep them for a longer time than expected. I could destroy those values once values are validated as ok, but am unwilling to write/test/check too much. But since sessions rely on cookies, am I to write a page for cookies disabled users, and one for javascript disabled users?
I could put validation and form on the same page, but don't want either to make my page a mess.
Any suggestion, if any?
Thanks!
