我有一个文本字符串属性类型,用于在页面标题中显示“siteName”:
<title><umbraco:Item runat="server" field="siteName" recursive="true" /></title>
我需要在我的 .net 用户控件中添加什么代码来添加“siteName”?
<asp:Label ID="siteName" runat="server" Text="siteName should go here!"></asp:Label>
任何人都可以帮忙吗?
我已将此添加到 Umbraco 论坛并建议以下内容,但不确定如何将其包含在我的 .ascx 文件中:
dynamic node = new umbraco.MacroEngines.DynamicNode(umbraco.NodeFactory.Node.GetCurrent()); siteName.Text = node._siteName;