我有一个视图,我正在使用特定的 layout.cshtml 文件,而不是主共享布局页面:“_LayoutExCr”
这对于控制器的 Get 部分很好:
//
// GET: /Exhibitor/Create
public ActionResult Create()
{
return View("Create","_LayoutExCr");
}
这工作正常 - 并显示具有特定 _LayoutExCr“主”页面的创建视图。
但是,在我的 Create 方法的 POST 中,如果输入了错误的访问代码,我想返回到相同的视图,使用 _LayoutExCr“主”页面 - 但 VS2012 Express 用红色下划线:
return View(exhibitor, "_LayoutExCr");
'System.Web.Mvc.Controller.View(string, string)' 的最佳重载方法匹配有一些无效参数
//
// POST: /Exhibitor/Create
[HttpPost]
public ActionResult Create(Exhibitor exhibitor)
{
if (ModelState.IsValid)
{
if (exhibitor.AccessCode == "myaccesscode")
{
db.Exhibitors.Add(exhibitor);
db.SaveChanges();
return RedirectToAction("Thankyou");
}
else
{
ModelState.AddModelError("", "The Access Code provided is incorrect.");
return View(exhibitor, "_LayoutExCr");
}
}
return View(exhibitor, "_LayoutExCr");
}
谁能让我知道如何使用相同的布局页面将模型返回到视图?
谢谢,
标记