Possible Duplicate:
ASP.NET MVC Razor render without encoding
One of the proerties of my Product object is returning a string that has html in it. When I set the model to the view, the view reads it as text and not html. How do I let the view know to read the property as html?
<td colspan="2">
<div>
<label >
@Model.LongDescription
</label>
</div>
</td>