如何编译/渲染存储在我的数据库中的html模板中使用的html助手?
当前视图显示了这一点:
但是@值应该已经编译好了。
呈现此输出的视图包含此代码,其中@ Model.Content包含html标记。
@{
ViewBag.Title = Model.Title;
}
@section meta{
<meta name="description" content="@Model.Description" />
<meta name="keywords" content="@Model.Keywords" />
}
@Html.Raw(Model.Content)