MVC 3 と Razor View エンジンを使用しています。
私がやろうとしていること
MVC 3 を使用してブログを作成しています。HTML の書式設定タグなどをすべて削除したいと考えています<p> <b> <i>
。
私は次のコードを使用しています。(それは動作します)
@{
post.PostContent = post.PostContent.Replace("<p>", " ");
post.PostContent = post.PostContent.Replace("</p>", " ");
post.PostContent = post.PostContent.Replace("<b>", " ");
post.PostContent = post.PostContent.Replace("</b>", " ");
post.PostContent = post.PostContent.Replace("<i>", " ");
post.PostContent = post.PostContent.Replace("</i>", " ");
}
これを行うためのより良い方法が絶対に必要であると感じています。誰でもこれについて私を案内してもらえますか。