retrieve LocalResource key and pass to Html.ActionLink linkText
i want retrieve LocalResource key and pass to H开发者_如何学Gotml.ActionLink linkText.but i dont know.
You could try using the strongly generated class by visual studio:
<%= Html.ActionLink(Resources.SomeKey, "Home", "Index") %>
Or for a more general solution take a look at this post.
精彩评论