如何删除asp.net MVC视图中的特殊字符

时间:2012-04-19 19:01:57

标签: asp.net-mvc

我正在运行asp.net MVC剃须刀。我正试图从我的视图中删除字符串中的引号。

所以我要回来了

  "<p><strong>test</strong</p>" 

and my wanting this

     <p><strong>test</strong></p>

这是我尝试过的:

@foreach (var post in Model)
{
    var cont = post.postContent.Trim('"');

    <div class="post">
        <h2>@Html.ActionLink(post.postTitle, "Details", "Home", new { id = post.postId }, null)</h2>

         @cont

        <p>@post.postDate</p>
    </div>
}

1 个答案:

答案 0 :(得分:0)

您是否看到显示@Cont的HTML编码文本(查看来源时)?如果是这样,请尝试

@Html.Raw(cont)