标签: asp.net-mvc asp.net-mvc-4
有没有办法从控制器调用主布局视图?
试过了
public ActionResult Validate() { return view("~/Views/Shared/_Layout.cshtml"); }
但它不起作用。
答案 0 :(得分:2)
它们是视图方法中的重载
return View ("NameOfView",masterName:"viewName");
方面的 Shanker Paudel