我在asp.net MVC应用程序中有一个布局页面,这个页面包含一个导航栏
<ul class="sidenavbar">
<li><a style="font-size:large">ASP.NET Tutorial</a></li>
<li>@Html.ActionLink("Home","Home")</li>
<li>@Html.ActionLink("Introduction", "Introduction")</li>
<li>@Html.ActionLink("Getting Started", "GettingStarted")</li>
</ul>
看到我有actionmethod每个项目在我的导航栏现在我想应用css类活动到当前选定的列表项目我怎么能实现这使用ViewContext或者如果有更好的方法?
这可能有效
<ul class="nav navbar-nav">
<li class="@(ViewContext.RouteData.Values["controller"].ToString() == "Home" ? "active" : "")">@Html.ActionLink("Home", "Index", "Home")</li>
<li class="@(ViewContext.RouteData.Values["controller"].ToString() == "About" ? "active" : "")">@Html.ActionLink("About", "About", "Home")</li>
<li class="@(ViewContext.RouteData.Values["controller"].ToString() == "Contact" ? "active" : "")">@Html.ActionLink("Contact", "Contact", "Home")</li>
</ul>