我有两个视图,即索引视图和 Createdialog 视图。索引视图的代码是:
<p>Search For: </p>
@Html.TextBox("companyName", Model);
Createdialog 视图的代码是:
@foreach(var item in Model.branch)
{
<tr>
<td><a href="#">
@Html.DisplayFor(itemModel => item.companyName)
</a></td>
<td>@Html.DisplayFor(itemModel => item.branchName)</td>
<td>@Html.DisplayFor(itemModel => item.address)</td>
<td>
@Html.ActionLink("Delete", "Delete", new { id = item.branchId })
@Html.ActionLink("Select", "Index", new { id = item.companyName })
</td>
</tr>
}
现在我要做的是,将公司 ID 的值从 createdDialog 视图发送到索引对话框视图,并在我单击选择链接时在文本框中显示 companyName。提供建议...谢谢。