vote up 0 vote down star

This action link:

 <%=Html.ActionLink("About","About", "Home" ,new  { @class="menulink" }) %>

Produces the following href 'About?Length=4' so it works in the 'root' of the application, but does not once you go one level or more deeper. Also...why is the '?Length=4' being appended? Lol.

flag

1 Answer

vote up 0 vote down check

Go it...my parameters are out of order and missing a null RouteValueDictionary...should be:

<%=Html.ActionLink("About","About", "Home" ,null,new  { @class="menulink" }) %>
link|flag

Your Answer

Get an OpenID
or

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