Hi,
I have a User Control that has an update panel nesting all its contents. Inside i've got various repeaters, and one of them is not firing the OnCommand.
Here is the full code:
<asp:UpdatePanel ID="up_newsletters" runat="server">
<ContentTemplate>
<asp:HiddenField ID="currentPage" Value="1" runat="server" />
<asp:HiddenField ID="hid_year" Value="0" runat="server" />
<asp:HiddenField ID="hid_searchString" Value="" runat="server" />
<h1>Newsletters</h1>
<asp:Repeater ID="rep_years" runat="server">
<HeaderTemplate>
<div class="botNav">
</HeaderTemplate>
<ItemTemplate>
<asp:LinkButto ...
Go to the complete details ...