How do I handle page flow in MVC (particularly asp.net)

后端 未结 5 1914

If you had to provide a wizard like form entry experience in mvc how would you abstract the page flow?

5条回答
  •  春和景丽
    2021-02-10 01:58

    public class CreateAccountWizardController : Controller
    {
       public ActionRresult Step1()
       {
       }
    
    
       public ActionResult Step2()
       {
       }
    }
    

提交回复
热议问题