You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iot/projects/IoTCenter/Views/Shared/_Menu.cshtml

23 lines
612 B

<ul class="nav navbar-nav">
<li class="@GetClass("Index","Home")">
<a href="@Url.Action("Index","Home")">
首页
</a>
</li>
<li class="@GetClass("Nodes","Home")">
<a href="@Url.Action("Nodes","Home")">
节点
</a>
</li>
</ul>
@functions{
public string GetClass(string action,string controller)
{
if (this.ViewContext.RouteData.Values["action"].ToString()==action&&
this.ViewContext.RouteData.Values["controller"].ToString()==controller)
{
return "active";
}
return "";
}
}