0

我正在运行 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>
}
4

1 回答 1

0

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

@Html.Raw(cont)
于 2012-04-19T19:04:49.887 回答