How can I store post.content as html in database and how can I display with rendered html without tags. I am trying with following way, but it\'s not working. It can stored enco
MVC3/Razor:
@Html.Raw(item.Content)
MVC2/WebForms:
<%: MvcHtmlString.Create(item.Content) %>