How do you show (safe) HTML saved in DB in a Razor view? It always escapes stuff like <.
Supposing your content is inside a string named mystring...
In releases from Beta 2 and earlier you can do:
@(new HtmlString(mystring))
In releases after Beta 2 you will be able to do:
@Html.Raw(mystring)
Source: