私はCodeFirstを使用しており、モデルが変更されるたびにデータベースにテストデータを導入しています。次のことを行うと問題が発生します。
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として取得するにはどうすればよいですか?