AutoGenerated REPEATER control asp.net c#
Guys,There is a Repeater inside a Repeater which is inside a main Repeater.
(Main Repeater --> Child Repeater --> Sub Child Repeater) .
When we reads it from source file during runtime, the repeater name is as below,
ctl00_MainContent_ReportRP_ctl01_ContentTypeRP_ctl00_ContentRP
ctl00_MainContent_ReportRP_ctl02_ContentTypeRP_ctl00_ContentRP
From the above, we can understand ContentRP is single repeater but it will be repeated twice (which is in another Repeater) which will be having a check box in each row.
Now i want to validate the check boxes (one or more) in both repeaters respectively are checked true and if checkboxes in both repeaters are found checked TRUE, i should make the checkboxes checked FALSE in one Repeater . I mean only one Repeater should have check box (one or more) checked TRUE at a time.
Please help me to do this.