Adding “active” tag to navigation list in an asp.net mvc master page

后端 未结 15 1767
渐次进展
渐次进展 2020-12-12 13:31

In the default asp.net mvc project, in the Site.Master file, there is a menu navigation list:

相关标签:
15条回答
  • 2020-12-12 14:09

    To contribute my own answer (tested in MVC4), I took a few best bits of the other answers, fixed a few issues, and added a helper to work with urls that aren't necessarily resolved via Controller & Action (eg. if you have an embedded CMS dealing with some page links, etc.)

    The code is also forkable on github: https://gist.github.com/2851684

    /// 
    /// adds the active class if the link's action & controller matches current request
    /// 
    public static MvcHtmlString MenuActionLink(this HtmlHelper htmlHelper,
        string linkText, string actionName, string controllerName,
        object routeValues = null, object htmlAttributes = null,
        string activeClassName = "active")
    {
        IDictionary htmlAttributesDictionary =
            HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes);
    
        if (((string)htmlHelper.ViewContext.RouteData.Values["controller"])
                .Equals(controllerName, StringComparison.OrdinalIgnoreCase) &&
            ((string)htmlHelper.ViewContext.RouteData.Values["action"])
                .Equals(actionName, StringComparison.OrdinalIgnoreCase))
        {
            // careful in case class already exists
            htmlAttributesDictionary["class"] += " " + activeClassName;
        }
    
        return htmlHelper.ActionLink(linkText, actionName, controllerName,
                                        new RouteValueDictionary(routeValues),
                                        htmlAttributesDictionary);
    }
    
    /// 
    /// adds the active class if the link's path matches current request
    /// 
    public static MvcHtmlString MenuActionLink(this HtmlHelper htmlHelper,
        string linkText, string path, object htmlAttributes = null,
        string activeClassName = "active")
    {
        IDictionary htmlAttributesDictionary =
            HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes);
        if (HttpContext.Current.Request.Path
            .Equals(path, StringComparison.OrdinalIgnoreCase))
        {
            // careful in case class already exists
            htmlAttributesDictionary["class"] += " " + activeClassName;
        }
        var tagBuilder = new TagBuilder("a")
                                {
                                    InnerHtml = !string.IsNullOrEmpty(linkText)
                                                    ? HttpUtility.HtmlEncode(linkText)
                                                    : string.Empty
                                };
        tagBuilder.MergeAttributes(htmlAttributesDictionary);
        tagBuilder.MergeAttribute("href", path);
        return MvcHtmlString.Create(tagBuilder.ToString(TagRenderMode.Normal));
    }
    0 讨论(0)
  • 2020-12-12 14:13

    This should work using jQuery on the client side of things, uses Google to serve the latest jQuery library:

    <script src="http://www.google.com/jsapi" type="text/javascript" language="javascript"></script>
    <script type="text/javascript" language="javascript">google.load("jquery", "1");</script>  
    
    <script language="javascript" type="text/javascript">
          $(document).ready(function(){
              var str=location.href.toLowerCase(); 
            $('#menucontainer ul#menu li a').each(function() {
                    if (str.indexOf(this.href.toLowerCase()) > -1) {
                            $(this).attr("class","current"); //hightlight parent tab
                         }  
                    });
          });  
        </script>
    
    0 讨论(0)
  • 2020-12-12 14:14

    Here is the version compatible with the current version of MVC4.
    I have rewritten Adam Carr's code as an extension method.

    using System;
    using System.Web.Mvc;
    using System.Web.Mvc.Html;
    using System.Web.Routing;
    
    namespace MyApp.Web {
        public static class HtmlHelpers {
            /// <summary>
            /// Returns an anchor element (a element) that contains the virtual path of the
            /// specified action. If the controller name matches the active controller, the
            /// css class 'current' will be applied.
            /// </summary>
            public static MvcHtmlString MenuActionLink(this HtmlHelper helper, string linkText, string actionName, string controllerName) {
                var htmlAttributes = new RouteValueDictionary();
                string name = helper.ViewContext.Controller.GetType().Name;
    
                if (name.Equals(controllerName + "Controller", StringComparison.OrdinalIgnoreCase))
                    htmlAttributes.Add("class", "current");
    
                return helper.ActionLink(linkText, actionName, controllerName, new RouteValueDictionary(), htmlAttributes);
            }
        }
    }
    
    0 讨论(0)
  • 2020-12-12 14:15

    I wanted to have a bit more control over my layout, and this is what I did.

    Create a LayoutModel that other models inherit:

    public abstract class LayoutModel
    {
        public CurrentPage CurrentPage { get; set; }
    }
    

    Create a LayoutAttribute that inherits from ActionFilterAttribute like so:

    public class LayoutAttribute : ActionFilterAttribute
    {
        private CurrentPage _currentPage { get; set; }
    
        public LayoutAttribute(
            CurrentPage CurrentPage
        ){
            _currentPage = CurrentPage;
        }
    
        public override void OnActionExecuted(ActionExecutedContext filterContext)
        {
            var result = filterContext.Result as ViewResultBase;
            if (result == null || result.Model == null || !(result.Model is LayoutModel)) return;
    
            ((LayoutModel)result.Model).CurrentPage = _currentPage;
        }
    }
    

    Now on the Action or Controller level I can set the current page (and other stuff if I wanted) like this:

    [Layout(CurrentPage.Account)]
    public class MyController : Controller
    {
    
    }
    

    In my layout view I now have access to the current page, and whatever else I add to the LayoutModel.

    0 讨论(0)
  • 2020-12-12 14:20

    Hope this will help.

    <ul>
        <li class="@(ViewContext.RouteData.Values["Controller"].ToString() == "Home" ? "active" : "")">
            <a asp-area="" asp-controller="Home" asp-action="Index"><i class="icon fa fa-home"></i><span>Home</span>
            </a>
        </li>
    </ul>
    
    0 讨论(0)
  • 2020-12-12 14:21

    You can also try to detect which is the current selected tab from its controller name and view name, then add the class attribute.

    public static string MenuActionLink(this HtmlHelper helper, string linkText, string actionName, string controllerName)
    {
        var htmlAttributes = new RouteValueDictionary();
    
        if (helper.ViewContext.Controller.GetType().Name.Equals(controllerName + "Controller", StringComparison.OrdinalIgnoreCase))
        {
            htmlAttributes.Add("class", "current");
        }
    
        return helper.ActionLink(linkText, actionName, controllerName, new RouteValueDictionary(), htmlAttributes);
    }
    
    0 讨论(0)
提交回复
热议问题