我正在运行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>
}
答案 0 :(得分:0)
您是否看到显示@Cont
的HTML编码文本(查看来源时)?如果是这样,请尝试
@Html.Raw(cont)