我一直在搜索整个 msdn,但我不知道我应该确切搜索什么...如何访问用户控件的子元素,我不希望创建一个新的自定义控件来呈现它自己的 html,即 html输出是一个 ascx 文件中的简单中继器,它看起来像这样:
<asp:repeater id="rpContent" runat="server" onitemdatabound="rpContent_itemdatabound">
<headertemplate><ul class="displaypanel"></headertemplate>
<itemtemplate>
<li class="on">
<a href="javascript://">tab header</a>
<div>
what goes here is tab content
</div>
</li>
</itemtemplate>
<footertemplate>
</ul></footertemplate>
</asp:repeater>
我希望实现看起来像这样:
<bni:tabs id="tabs" runat="server">
<tab srcId="id1" />
<tab srcId="id2" />
</bni:tabs>
所以基本上在后面的代码中,我想检索数组或列表中的子项集合,并对 id 做一些工作,然后将结果集绑定到我的转发器......