我是 SDL Tridion 的新手,只是在探索内容交付。我在我的页面模板的 TBB 中使用了以下代码
<% ComponentPresentationFactory factory = new ComponentPresentationFactory("tcm:0-6- 1");
ComponentPresentation ps = factory.GetComponentPresentationFactory("tcm:6-9841","tcm:6-9858-32");
if(ps!=null )
{
string output="";
output=ps.Content;
Literal1.Text=output;
}
%>
<asp:Literal id="Literal1"Text="" runat="server"<</asp:Literal>
我已经发布了该组件并使用了动态组件模板。但是页面上没有反映任何内容。我错过了什么吗?