我有一个名为 _GetForfaitDashBoard.cshtml 的局部视图 这是代码
@model WebAppComp.Areas.Admin.Models.StatsForfaitDashBoard
<table class ="table table-bordered">
<tr>
<th>Nombre total de Forfaits</th>
<th>Moyenne des forfaits par Agence</th>
<th>Forfait Ayant le prix le plus haut</th>
<th>Forfait Ayant le prix le plus bas</th>
<th>Le forfait le plus visité</th>
<th>Le forfait le mieux noté par les membres</th>
<th>le forfait ayant le plus de réservations</th>
<th>le forfait le plus récent</th>
</tr>
<tr>
<td>@Model.CountForfaits</td>
<td>@Model.AverageCountForfaitPerAgence</td>
<td>@Html.ActionLink("Ici", "GetById", "Agence", new { numSiretAgence = Model.IdHighestPriceForfait }, null)</td>
<td>@Html.ActionLink("Ici", "GetById", "Agence", new { numSiretAgence = Model.IdLowestPriceForfait }, null)</td>
<td>@Html.ActionLink("Ici", "GetById", "Agence", new { numSiretAgence = Model.IdMostVisitedForfait }, null)</td>
<td>@Html.ActionLink("Ici", "GetById", "Agence", new { numSiretAgence = Model.IdBestRatedForfait }, null)</td>
<td>@Html.ActionLink("Ici", "GetById", "Agence", new { numSiretAgence = Model.IdMostBookedForfait}, null)</td>
<td>@Html.ActionLink("Ici", "GetById", "Agence", new { numSiretAgence = Model.IdMostRecentForfait}, null)</td>
</tr>
</table>
这是我在其中放置统计信息的表格。我想要做的是将这些统计信息加载到基于Form的网页中,该表单将包含一个简单的下拉列表,用户可以在其中选择他想要的统计类型。这是部分视图操作的代码:
[HttpPost]
public PartialViewResult _GetForfaitDashBoard (TypeForfait typeForfait)
{
.....
}
现在我不知道如何将我所说的一切付诸行动。在基本视图中放置一个发布到局部视图操作的表单是一个好方法吗?或者有没有其他解决方案可以基于表单调用局部视图?