umbraco - 母版页:“如果字段不为空则显示字段”
我对 Umbraco 和 .net 完全陌生。 我有一个母版页和一些字段 - 现在我想仅在特定字段不为空时才显示母版页的一部分。
伪代码:
if(myField != NULL) then
<div class="something">
<umbraco:Item field="myField" runat="server"></umbraco:Item >
</div>
endif;
安迪知道这是如何工作的吗?
提前致谢!
I'm totally new to Umbraco and .net.
I have a masterpage and a few fields - now i'd like to show a part of the masterpage only if a specific field is not empty.
Pseudo code:
if(myField != NULL) then
<div class="something">
<umbraco:Item field="myField" runat="server"></umbraco:Item >
</div>
endif;
Andy idea how that works?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
感谢 umbraco irc 频道的帮助,我找到了解决方案。
答案是创建一个 xslt 文件+宏(自动生成)。
xslt 内容:
母版页内容:
Thanks to the helpful umbraco irc channel i found the solution.
The answer was to create a xslt file + macro (which is generated automatically).
xslt content:
Masterpage content: