does anyone have a link to some code for a wizard control in asp.net mvc 2? preferable one without using the session ? i would like to persist all the values in between steps?
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
- How to know full paths to DLL's from .csproj f
Pro ASP.NET MVC 2 Framework 2nd Edition
You can use the simple component MVCWizard.Wizard available on NuGet. The WizardController allows you to create a wizard using partial view. There is also the AutoWizardController that renders the entire wizard in a single view. All these components operate with the session to store the model state. There are also some examples of the use of these classes on NuGet. These components works on MVC3.