Hi I have an Update Panel like this
<asp:UpdatePanel ID="Updatepanel1" runat="server">
<Triggers>
<asp:AsyncPostBackTrigger ControlID="RadioButtons1" EventName="SelectedIndexChanged" />
<asp:AsyncPostBackTrigger ControlID="DropDown1" EventName="SelectedIndexChanged" />
<asp:AsyncPostBackTrigger ControlID="DropDown2" EventName="SelectedIndexChanged" />
<asp:AsyncPostBackTrigger ControlID="DropDown3" EventName="SelectedIndexChanged" />
</Triggers>
<ContentTemplate>
<asp:Label runat="server" Text="LabelToUpdate"></asp:Label>
</ContentTemplate>
</asp:UpdatePanel>
I want to update the label everytime one of the above triggers happens.
The first time I trigger it everything works perfectly fine. But after that there are no more updates even if I change anything (It is like all Control's AutoPostBack
get set to false after the first Partial Post back, so nothing happens when i change the selection a second time).
Any help is greatly appreciated
Thank you
Copy and Paste this .. works fine :)