是否可以将模型传递给控制器@Html.Partial
?
使用普通<td>
的视图返回行列表,而这完全相同的<td>
包裹在null
表单提交的部分返回中
@using ( Html.BeginForm() )
{
<table>
<tr>
<th></th>
</tr>
<tr>
@for ( int i = 0; i < Model.Rows.Count; i++ )
{
@*<td class="row">Book @Html.DisplayFor(x => Model.Rows[i].RowNum) @Html.DropDownListFor(x => Model.Rows[i].Selected, Model.Rows[i].Data) </td>*@
@Html.Partial("Row", Model.Rows[i])
}
</tr>
</table>
<input type="submit" value="Submit" />
}