Reputation: 71
What do you think it's the best way to create a wizard over several pages in asp.net-mvc ? I am thinking to:
Upvotes: 5
Views: 1763
Reputation: 27323
<form>
element<input type='submit'>
Session
variable, and retrieve the object when in the form-postSession
Just have some
[Serializable]
public class WizardAnswers
which contains properties for each wizard-answer to save the user's data in.
Upvotes: 6