问题描述
可能重复:结果
<一href=\"http://stackoverflow.com/questions/5059805/razor-syntax-$p$pvent-escaping-html-in-an-action-link\">Razor语法prevent转义操作链接HTML
大家好
必须是一个简单的方法来做到这一点,但已经尝试和失败迄今...
Must be an easy way to do this but have tried and failed thus far...
有一个@ Html.ActionLink和链接文字中,我想呈现一个跨度。目前,这样的连接codeS元素,它的呈现为页面上的文本。
Have a @Html.ActionLink and within the link text I'd like to render a span. Currently doing so encodes the element and it's rendered as text on the page.
下面就是我想:
@Html.ActionLink("Here's some text <span class='myClass'>inside the span</span>"), "ActionName", "ControllerName")
任何想法如何获取链接文本处理HTML和正确渲染呢?
Any ideas how I get the link text to handle HTML and render it correctly?
谢谢
蒂姆·
推荐答案
的 ActionLink的
方法只能采取纯文本。
The ActionLink
method can only take plain text.
您应该写你自己的&LT; A&GT;
标记并使用 @ Url.Action(...)
You should write your own <a>
tag and use @Url.Action(...)
.
这篇关于包含HTML @ Html.ActionLink链接文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!