This question is locked. New answers and comments are not allowed.
I am trying to insert a link into my grid like so:
columns.Bound(c => c.DocumentId).Format(%><%
Html.ActionLink(
MyStringTable.Publish, "Publish",
new RouteValueDictionary
{{"id", "{0}"}}).ToString()%><%);
When Rendered the column looks like this:
<a href="/Contract/Publish/13">Publish</a>
Instead of:
_Publish_
(beginining and ending underscores denote a link behavior)
Any thoughts on this?