I want to create multi stage registration form where i would be having next and previous button like when moving from 1st step to 2nd step in registration form and then coming back to again 1st step with previous button then 1st form should retain all its values.
I am using this code from Darin Dimitrov answer:multi-step registration process issues in asp.net mvc (splitted viewmodels, single model)
But in Darin Dimitrov answer problem is dat with this line:
@Html.EditorFor(x => currentStep, null, "")
I would be having different different fields with slight modification of design too on every new registration form and i would be having progress bar too on which i will update progress bar status.
So in Darin Dimitrov answer i would like to use different different View.Is that possible with Darin Dimitrov answer to use different views?
Or if anybody having another solution then please do post your solution.