I tried this code

<%: Html.ActionLink("Home", "Index", "Home", new { @class = "NavLink" })%>

and it links to the css so that I can style the link, but it changes the link to have a different URL that is not to my controller like it is without the new { @class = "NavLink" }. Is there any way to let me style these links without ruining my URLs so they go to the correct pages?

Thanks!

link|improve this question

67% accept rate
duplicate of stackoverflow.com/questions/1444495/… – Michiel Overeem Mar 3 '11 at 18:36
4  
linked question is VB.NET, this is C#, so not quite an exact duplicate – Patrick McDonald Mar 3 '11 at 18:41
feedback

2 Answers

up vote 9 down vote accepted

Make sure you are using the proper overload:

<%: Html.ActionLink("Home", "Index", "Home", null, new { @class = "NavLink" })%>
                                              ^                ^
                                          routeValues    htmlAttributes
link|improve this answer
This worked perfectly!!! Thank you so much. :D – pongahead Mar 3 '11 at 18:41
@Darin Dimitrov: Well represented, thank you. – Valamas Jul 5 '11 at 22:28
feedback

Method Actionlink have some overloading.

If you want to determine some html attributes, you should use such methods(in your case):

  ActionLink(HtmlHelper, String, String, RouteValueDictionary, IDictionary<String, Object>)
  ActionLink(HtmlHelper, String, String, String, Object, Object)
  ActionLink(HtmlHelper, String, String, String, RouteValueDictionary, IDictionary<String, Object>)

More about this here: http://msdn.microsoft.com/en-us/library/system.web.mvc.html.linkextensions.actionlink.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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