am building a blog engine using razor/asp.net mvc and I have a text area in which user should enter mainly paragraphs, links and headings. Content of textarea is taken and stored as varchar in db. When I retrieve that content I store it in a string , say content.
When I send this to razor view and do something like @Model.content it simply prints it all as a text. Now is there a simple way to make this work (meaning treat is as html not string) or what would you do in this situation?