我想将详细信息从Details.cshtml中显示在index.cshtml中,当我按下“with ajax但我不知道怎么做。我已经尝试funcion load。{{ 1}}
enter code here
我希望在另一页显示的数据来自此表单。
... <td>
@Html.DisplayFor(modelItem => item.Name)
</td>
<td>
<a asp-action="Edit" asp-route-id="@item.ContactId">Edit</a> |
<a asp-action="Details" asp-route-id="@item.ContactId">Details</a>|
<a asp-action="Delete" asp-route-id="@item.ContactId">Delete</a>
</td>
</tr>
有人可以帮忙吗?