我知道這個主題已經在衆多帖子中處理過,但我無法解決它。在會話中存儲對象
在ActionResult中的控制器內我想將一個對象存儲在Session中並在另一個ActionResult中檢索它。像這樣:
public ActionResult Step1()
{
return View();
}
[HttpPost]
public ActionResult Step1(Step1VM step1)
{
if (ModelState.IsValid)
{
WizardProductVM wiz = new WizardProductVM();
wiz.Step1 = step1;
//Store the wizard in session
// .....
return View("Step2");
}
return View(step1);
}
[HttpPost]
public ActionResult Step2(Step2VM step2)
{
if (ModelState.IsValid)
{
//Pull the wizard from the session
// .....
wiz.Step2 = step2;
//Store the wizard in session again
// .....
return View("Step3");
}
}
Thx爲您的答案它像一個魅力:-) – 2012-08-10 09:30:53
我一直在努力鏈接到更深入的列表中的對象的顯示。 這正是我所需要的。謝謝。 – 2017-03-17 16:22:44