在字符串中解码锚标记

时间:2014-06-28 16:19:21

标签: c# asp.net-mvc

我有一个从第三方API返回的字符串,其中包含完全形成的锚标记(在大多数情况下)。 html似乎是完全正确的。

我想解码它并输出到MVC视图作为有效的锚标记,但是HTMLDecode似乎没有将锚标记转换为链接。

我只是输出文本;

<p>@HttpUtility.HtmlDecode(Model.Description)</p>

但文本中包含了锚标记,就像这样;

This is a test description. Check here - <a href="http://query.nytimes.com/gst/fullpage.html?res=9F0DE2D81E3CF936A25753C1A9669C8B63&sec=&spon=&pagewanted=all">New York Times</a> for more information

我期待HtmlDecode的大部分内容吗?

1 个答案:

答案 0 :(得分:3)

使用@Html.Raw()

<p>@Html.Raw(Model.Description)</p>

http://msdn.microsoft.com/en-us/library/gg480740%28v=vs.118%29.aspx