HTML5 allows the use of custom attributes prefixed with the phrase "data-" which pass validation without the use of a custom DTD (more info). In Asp.Net MVC, is there any way to specify an ActionLink with a data- attribute?

The typical method for adding attributes to an ActionLink is to pass in an anonymous object, with a custom property for each object:

new { customattribute="value" }

What I'd like to do is:

new { data-customattribute="value" }

But this doesn't work, because the hyphen character isn't valid in property names. Is there any way around this restriction? Or do I just have to choose between using ActionLinks and using data- attributes?

link|improve this question

76% accept rate
feedback

2 Answers

up vote 10 down vote accepted

Yes, there is an overload for ActionLink method which takes an IDictionary<string,object> instead of an anonymous object.

<%=Html.ActionLink("text", "Index", "Home", null /*routeValues*/, 
    new Dictionary<string, object> { 
       { "data-customattribute", "value" }, 
       { "data-another", "another-value" } 
    })%>

Outputs :

<a data-another="another-value" data-customattribute="value" href="/">text</a>
link|improve this answer
2  
Perfect. Note to future readers: If you use an IDictionary for the HTML attributes, you must also use a RouteDictionary for the routeValues parameter (you can use the same syntax as the HTML attributes use above). – AaronSieb Feb 26 '10 at 4:04
feedback

or you can use

new { data_customattribute="value" }

and the compiler is smart enough to know what you mean

link|improve this answer
This ought to be the accepted answer. – InfinitiesLoop Apr 1 '11 at 3:40
2  
This only works for MVC3+. – David Grant May 25 '11 at 18:16
1  
yes to achieve the same solution in version prior to mvc3 you should use @çağdaş solution – Nadeem Khedr May 26 '11 at 17:34
nice answer Nadeem! – robnardo Dec 30 '11 at 15:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.