In Preview 5, here are the actionlinks that worked fine:
- listing is the controller and about is the action
<%= Html.ActionLink("About", "About", "Listing" ) %>
2.
var values = new RouteValueDictionary();
text and actionname are both strings
Html.ActionLink(text, actionName, values);
What would I convert these to get unblocked on the RC release?