我有一个表名信息。我想创建这个强类型表的部分视图。我在 View/Shared 中的部分视图是 _InfoView.cshtl,例如:
@model IEnumerable<RealTest.Models.ifo>
<h2>_InfoView</h2>
<p>
@Html.ActionLink("Create New", "Create")
</p>
<table>
<tr>
<th>
name
</th>
<th>
address
</th>
<th></th>
</tr>
@foreach (var item in Model) {
<tr>
<td>
@Html.DisplayFor(modelItem => item.name)
</td>
<td>
@Html.DisplayFor(modelItem => item.address)
</td>
<td>
@Html.ActionLink("Edit", "Edit", new { id=item.id }) |
@Html.ActionLink("Details", "Details", new { id=item.id }) |
@Html.ActionLink("Delete", "Delete", new { id=item.id })
</td>
</tr>
}
我的视图页面就像:@model IEnumerable
@{
ViewBag.Title = "Index";
}
<p>
@Html.ActionLink("Create New", "Create")
</p>
@Html.Partial("_InfoView")
现在我想从另一个强类型视图中调用它。当我调用它时,它似乎没有获得部分视图所需的数据。现在我应该如何传递部分视图数据???