when i call <%= Html.ActionLink("abcáí", "Index") %> in my view, it generates this html output: <a href="/">abcáí</a>
but I need not to escape the foreign characters áí, so I want the output to be <a href="/">abcáí</a>
My problem is not only with the function ActionLink, but everywhere, where is the htmlencoding used.
Any suggestions?