我一直在搜索整個msdn,但我不知道我應該在尋找什麼......我如何訪問用戶控件的子元素,我不希望創建一個新的自定義控件來呈現它自己的html, HTML輸出是一個ASCX文件的簡單轉發器,它看起來像這樣:在.net中以編程方式檢索用戶控件子元素,如何?
<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>
所以基本上在後面的代碼,我想檢索數組或列表中的兒童的集合,並做一些工作與ids,然後將結果集綁定到我的中繼器...
沒有即時消息不,我想retreive選項卡的列表,然後將其綁定到一個非一直的repeater – Ayyash 2009-10-01 03:16:08