This is trickier than I thought, since you can't use code render blocks within server tags (I think!).
here's an example of what i want to do:
<asp:repeater id="arepeater" runat="server">
<itemtemplate>
<asp:repeater id="anotherrepeater" runat="server" memberID=<%#container.dataitem("nmemberID"%>
</asp:repeater>
</itemtemplate>
</asp:repeater>
any ideas on how to do this? i tried using _itemcreated method of "arepeater" to set a data source for "anotherrepeater" and databind(), but i get an error saying that "anotherrepeater" does not exist...
any ideas? thanks!! -brad
here's an example of what i want to do:
<asp:repeater id="arepeater" runat="server">
<itemtemplate>
<asp:repeater id="anotherrepeater" runat="server" memberID=<%#container.dataitem("nmemberID"%>
</asp:repeater>
</itemtemplate>
</asp:repeater>
any ideas on how to do this? i tried using _itemcreated method of "arepeater" to set a data source for "anotherrepeater" and databind(), but i get an error saying that "anotherrepeater" does not exist...
any ideas? thanks!! -brad