如何在模板中编译html helper

时间:2015-02-03 08:21:21

标签: asp.net-mvc templates razor html-helper

如何编译/渲染存储在我的数据库中的html模板中使用的html助手?

当前视图显示了这一点:

enter image description here

但是@值应该已经编译好了。

呈现此输出的视图包含此代码,其中@ 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)

0 个答案:

没有答案