我正在使用 Code First,并且每次模型更改时都会将测试数据引入数据库。当我执行以下操作时,问题就来了:
context.News.Add(new News
{
Id = 3,
NewsTitle = "title",
NewsImage = "thumb.jpg",
NewsText = "text",
Venue = @"<iframe width=""1000"" height=""350"" frameborder=""0"" scrolling=""no"" marginheight=""0"" marginwidth=""0"" src=""https://maps.google.ro/maps?hl=ro&ie=UTF8&t=h&ll=46.778815,23.614479&spn=0.002572,0.010718&z=17&output=embed""></iframe>"
});
我也试过用 \ 而不是双引号......仍然没有。问题是当我在页面上使用“场地”时,它显示为纯文本:
<div style="margin-top: 10px;">
@News.Venue
</div>
我应该怎么做才能将它作为html?