如何在MVC中的模型属性中呈现html标记。我有一个模型名称游戏的集合,我有一个属性名称描述,其中有一些html标签。
我想渲染属性的html标记以及描述,目前它将html标记视为文本。
我的代码
List<Game> gameList = new List<Game>();
gameList.Add(new Game() { GameId = 3, GameDescription = @"GTA 3, it's working 100 percent.
<br/>
I love gaming and Gta San Andreas is one of my favourite game.
<strong>Compressed Gta San Andreas</strong>
or after download leave a comment on below section." });
我有一个强大的类型视图绑定模型游戏
<div class="col-sm-8 text-left">
@foreach (var game in Model)
{
<p style="height:200px">
@game.GameDescription
</p>
}
</div>