[HttpGet]
public ActionResult BookingStep1()
{
return View(new BookingMainApplicantInfo());
}
[HttpPost]
public ActionResult BookingStep1(BookingMainApplicantInfo mainApplicant)
{
return View(mainApplicant);
}
[HttpGet]
public ActionResult BookingStep12()
{
//how to fetch data from above step 2 to here
return View();
}
シナリオは、メンバー データを次のステップ、つまり次の actionresult に送信することです。そこで請求書を計算し、支払いオプションを提供します。
セッションを使用する必要がありますか、それとも db に保存する必要がありますか?