Hello,
I have an UpdatePanel with a big photo, and outside of the UpdatePanel i have a Repeater that shows some thumbnails.
The code is something like this:
<cc1:UpdatePanel ID="PanelFotoGrande" runat="server" Mode="Conditional">
<ContentTemplate>
<asp:Image ID="imgFotoGrande" runat="server" />
</ContentTemplate>
<Triggers>
<cc1:ControlEventTrigger ControlID="Button1" EventName="Click" />
</Triggers>
</cc1:UpdatePanel>
<asp:Repeater ID="rptMiniaturas"...>
<ImageButton... /> (...Thumbnails...)
</asp:Repeater>
But it doesn't work. I'm sure that the problem is something about the Repeater control. If I try the same, but in place of a Repeater ItemCommand Event I use a Button Click Event, all works correctly.
I mean something like this:
<cc1:UpdatePanel ID="PanelFotoGrande" runat="server" Mode="Conditional">
<ContentTemplate>
<asp:Image ID="imgFotoGrande" runat="server" />
</ContentTemplate>
<Triggers>
<cc1:ControlEventTrigger ControlID="Button1" EventName="Click" />
</Triggers>
</cc1:UpdatePanel>
<asp:Button ID="btnFoto" runat="server" Text="btnFoto" /> Can somebosy help me with that issue?
Thanks!