Return html string from controller and display in view

asp.net-mvc, asp.net-mvc-3

Solution

You don't say which rendering engine you're using:

MVC3: @Html.Raw(Model.Description)

Problem

How can I return a model with a string propertie containing `<li>` elements and display it in view? If I just write @Model.Messages it shows all the string.. i need it in html format.

Original source

Related problems