Reputation: 11804
i was looking how to implement my wizard in asp.net mvc 2 without using TempData or session like in this example: http://www.highoncoding.com/Articles/652_Creating_Wizard_in_ASP_NET_MVC_Part_2.aspx?
Upvotes: 0
Views: 284
Reputation: 1039538
You could use the Html.Serialize helper from MVC Futures.
Upvotes: 2
Reputation: 34523
You could move from screen to screen using GET method and store collected data in URL as parameters.
Upvotes: 0