これは私のレイアウトページです:
<!doctype html>
<html lang="en">
<head>
<meta charset='utf-8'>
<title>@ViewBag.Title</title>
</head>
<body>
@Html.ActionLink("Home", "Index", "Home", null, new { @class = "selected"})
@Html.ActionLink("Users", "Index", "User")
@Html.ActionLink("Customers", "Index", "ProductCompany")
@RenderBody()
</body>
</html>
サーバー側でロードされたビューに応じて、actionlinkの「選択された」クラスを変更したいと思います。私はそれを行うために利用可能なオプションを探しています。
よろしくお願いします