使用razor指向umbraco中的富文本编辑器

时间:2015-02-25 20:15:27

标签: c# asp.net-mvc razor umbraco

您好我正在使用umbraco并且我创建了一个富文本编辑器,其中包含我想要显示的一些信息..现在我不确定如何使用剃刀指向它...我想再次指向它的id我很困惑。

我的富文本编辑器被称为'条款和条件'它是另一页的孩子..我试图做这样的事情..

   <umbraco:macro runat="server" language="cshtml">
          @inherits umbraco.MacroEngines.DynamicNodeContext             
          @{ var termsHtml = Model.Children.Where("Name == \"Terms and Conditions\""); }                    
           @if (termsHtml.Count() == 0) { termsHtml = Model.Parent.Children.Where("Name == \"Terms and Conditions\""); }                    
            @if (termsHtml.Count() == 1){    @Html.Raw(@termsHtml.First().GetProperty("htmlContent").Value) }                   
     </umbraco:macro>

我不想做这个凌乱的宏我想知道剃须刀的一种方式我只能指向儿童富文本编辑器ID,而不必在其中硬编码名称..加上这个宏甚至不起作用。< / p>

任何帮助都会很棒.. 感谢

0 个答案:

没有答案