I'm about to program a mutistep form in my MVC App (Self-made MVC framework) in which no data is to be inserted until the last step is finished.
I got the following issues/questions
- I'd really like to find a kind of pattern to solve this problem, is there any?
- I want it to be easy the perform a go back action, and get the data back in the last step. Question: Is a session the only way to pass the data? Are get parameter maybe a better/simpler option?
- How have you solved this problem before