部分檢視與模型
模型也可以新增到區域性檢視中:
@model Solution.Project.Namespace.MyModelClass
<p>@Model.Property</p>
在檢視中,你現在可以使用:
<div>
@Html.Partial("PartialViewExample", new MyModelClass(){Property="my property value"})
</div>
<div>
@{ Html.RenderPartial("PartialViewExample", new MyModelClass(){Property="my property value"}); }
</div>