I have a long title and need to add something like a line break within the ActionLink. I've tried \r\n as well as System.Environment.NewLine...all with no success.
<%=Html.开发者_如何转开发ActionLink("Long title goes here", "index", "Overview")%>
You may try something like this:
<a href="<%= Url.Action("index", "overview") %>">
Long title first line<br/>
Long title second line<br/>
Long title third line
</a>
精彩评论