コントローラー ファイルの practiceid プロパティにアクセスする必要があります。これにアクセスする方法を教えてください。
<a href="" practiceid="df3d4335671b4fa880aebc2a6fc56869">Corporate</a>
<a href="" practiceid="26f4c9f5444b485c9d974f75361fa8ca">Tax & Employee Comp/Exec Benefits</a>
<a href="" practiceid="40b0a3a0b2744fafae0475756693c37f">Business Finance & Restructuring</a>
規制
私の csHtml コードは次のとおりです。
@foreach (var facetData in Model.SearchResultItems.Facets.Select((x) => new { Item = x.Key, Index = x.Value }))
{
<tr>
<td>
@Html.ActionLink(@facetData.Index, "Search","Search", new { practiceid = @facetData.Item })
</td>
</tr>
}
コントローラーコードは次のとおりです。
public ActionResult Search(string practiceid)
{
}
しかし、私は自分の practiceid パラメータに何も取得していません。