_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に基づいて Web ページにロードすることです。フォームには、ユーザーが必要な統計の種類を選択する単純なドロップダウンリストが含まれます。部分的な View Action のコードは次のとおりです。
[HttpPost]
public PartialViewResult _GetForfaitDashBoard (TypeForfait typeForfait)
{
.....
}
今、私が言ったことをすべて実行する方法がわかりません。部分ビューのアクションに投稿するベース ビューにフォームを配置することは良いアプローチでしょうか? または、フォームに基づいて部分ビューを呼び出す他のソリューションはありますか?