當我在控制器中添加一個新的ActionResult這樣
鑑於剃鬚刀文件,我如何區分它是一個視圖還是一個局部視圖?
public ActionResult Step8(AddPropertyStep7ViewModel model)
{
return View();
}
我需要指定我想回到什麼樣的看法。{查看與佈局,景觀,部分景觀}
我知道,我想返回如下所示的文件
這是Step1.cshtml。我如何確定它是某種觀點還是局部觀點?
@using W.Resources
@model W.Models.ViewModels.Agent.AddPropertyStep1ViewModel
@{
Layout = "~/Areas/Agent/Views/Shared/_Layout.cshtml";
}
<div class="side site--dashboard"> ... <div>
@section scripts
{
<script> ... </script>
}
你爲什麼想這樣做?有可能是另一種解決方案 – Shyju
感謝。我編輯了問題並提到了原因。 –
當你調用'Partial'輔助方法時,它將不包含佈局。你看到不同的行爲? – Shyju