Hi Guys,
I am just stuck in something, I am using a Repeater (nested repeaters actually) and trying to put "LOAD MORE" function on both repeaters.
I basically have 1 repeater which loads the POST and the other repeater (nested) which loads comments, both are in UPDATE PANEL.
Something like below
<asp:Repeater ID="Repeater1" runat="server" DataSourceID="SqlDataSource1" OnItemCommand="Repeater1_ItemCommand">
<ItemTemplate>
<%#Eval("POST") %>
<asp:Label ID="Label2" runat="server" Text='<%# Eval("POSTid") %>' Visible="false"></asp:Label>
...
Go to the complete details ...