Conditionally add htmlAttributes to ASP.NET MVC Html.ActionLink

Posted by macca1 on Stack Overflow See other posts from Stack Overflow or by macca1
Published on 2010-05-13T04:12:40Z Indexed on 2010/05/13 4:24 UTC
Read the original article Hit count: 1292

I'm wondering if it's possible to conditionally add a parameter in a call to a method.

For example, I am rendering a bunch of links (six total) for navigation in my Site.Master:

<%= Html.ActionLink("About", "About", "Pages") %> | 
<%= Html.ActionLink("Contact", "Contact", "Pages") %>
<%-- etc, etc. --%>

I'd like to include a CSS class of "selected" for the link if it's on that page. So in my controller I'm returning this:

ViewData.Add("CurrentPage", "About");
return View();

And then in the view I have an htmlAttributes dictionary:

<% Dictionary<string,object> htmlAttributes = new Dictionary<string,object>();
   htmlAttributes.Add("class","selected");%>

Now my only question is how do I include the htmlAttributes for the proper ActionLink. I could do it this way for each link:

<% htmlAttributes.Clear();
   if (ViewData["CurrentPage"] == "Contact") htmlAttributes.Add("class","selected");%>
<%= Html.ActionLink("Contact", "Contact", "Pages", htmlAttributes) %>

But that seems a little repetitive. Is there some way to do something like this psuedo code:

<%= Html.ActionLink("Contact", "Contact", "Pages", if(ViewData["CurrentPage"] == "Contact") { htmlAttributes }) %>

That's obviously not valid syntax, but is there a correct way to do that? I'm open to any totally different suggestions for rendering these links. I'd like to stay with something like ActionLink that takes advantage of using my routes though instead of hard coding the tag.

© Stack Overflow or respective owner

Related posts about asp.net-mvc

Related posts about actionlink