Microsoft
Software
Hardware
Network
Question : How to access a repeater inside a repeater.
I have a repeater inside a repeater:
<asp:Repeater id="RepeaterA" runat="server">
<ItemTemplate>
<p>
<%# DataBinder.Eval(Container.
DataItem, "Field1") %>
</p>
<asp:Repeater ID="RepeaterB" datasource='<%# ((DataRowView)Container.Da
taItem).Ro
w.GetChild
Rows("Rela
tion") %>' runat="server">
<ItemTemplate>
<asp:CheckBox ID="CheckBox" runat="server" Text="" />
</ItemTemplate>
</asp:Repeater>
</ItemTemplate>
</asp:Repeater>
How can I access the control CheckBox? I only see RepeaterA from my C# code.
Kevin
Answer : How to access a repeater inside a repeater.
You can use the itemdatabound event for looking in each dataitem within repeaterA and then for repeaterB
Random Solutions
How do i do PXE Boot using windows 2008 server and Deployment Workbench
SSL Weak Cipher Suites Supported
PHP - session variables lost between subfolders
Error Creating Web Site: Exception from HRESULT: 0x800710D8
E-mail messages not displaying correctly
CentOS 5.3: search keyword in array of logs: how?
asp.net: How to bind Images to a ListView from a Database - I have a special need! the Image have already be downloaded
In vb.net 2008 I need to evluate two columns in ms access to determine if a duplicate field exists
How to Open a Console Session (xterm)
RHEL command to do an LS and have the result stop until you hit the space bar