I have nested repeater. First Repeater is showing CityName coming from CityTable. And Second repeater will display CityDetails that will come from another table on the basis of cityName.
Output Will Look like this.
City1
Data1
Data2
City2
Data3
Data4 and so on.
I took nested repeater for this.
<asp:Repeater ID="rp1" runat="server">
<ItemTemplate>
<%# GetImageSource( Eval("CityName"))%>
<asp:Repeater ID="rp2" runat="server" >
<ItemTemplate>
<%#DataBinder.Eval(Container.DataItem, "DealHeadline")%>
</ItemTemplate>
</asp:Repeater>
</ItemTemplate>
</asp:Repeater>
Now I am not getting the point how to show that second repeater data?
May be this is the not correct way to solve this issue. Please Suggest me correct way or any solution.