What do you think it’s the best way to create a wizard over several pages in asp.net-mvc ?
I am thinking to:
- create a hidden field in every page
which contain my whole object
serialized - override OnActionExecuting -> get my
object from the hidden or tempdata - override OnResultExecuted -> put the
object in tempdata, when i go to the
next page(when redirect)
<form>element<input type='submit'>Sessionvariable, and retrieve the object when in the form-postSessionJust have some
which contains properties for each wizard-answer to save the user’s data in.