私のビューの 1 つに、次のようなドロップダウン リストがあります。
<div id="CurrentExchange" style="position:absolute; right:150px; top:250px;">
<h3>Select an Exchange</h3>
<select>
<option value="Bicycle" selected>Bicycle Exchange</option>
<option value="Tennis">Tennis Exchange</option>
</select>
</div>
同じビューの他の場所に、次のようなアクション リンクがあります。
@Html.ActionLink("click here", "Index", "BicycleSellerListing")
私がやりたいこと、そして方法がわかりません(私はMVCとHTMLに非常に慣れていません)は、擬似コードで次のようなものです:
if CurrentExchange = "Bicycle"
@Html.ActionLink("click here", "Index", "BicycleSellerListing")
else if CurrentExchange = "Tennis"
@Html.ActionLink("click here", "Index", "TennisSellerListing")
else if ...