I would like to display a link with Html.ActionLink.
<%= Html.ActionLink("HOME", "Index") %>
Instead of using the word "HOME", I would like to use string from resource file because I need multiple languages.
<%$ Resources:Site, MenuHome %>
In this case, how to nested these tags? Thanks!