I have a simple Model:
public class MyModel
{
public string Text{get;set;}
}
I have a View, which renders Text property of MyModel:
<p>@Model.Text</p>
How can I render html tags from Text like tags? For example, I have Text "<b>Text</b>
". I want to get bold text inside tag p as result:
Text
But Razor renders text as is:
<b>Text</b>
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…