こんにちは、このような更新パネルがあります
<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>
上記のトリガーのいずれかが発生するたびに、ラベルを更新したいと考えています。
初めてトリガーすると、すべてが完全に正常に機能します。しかし、その後、何かを変更しても更新はありません (AutoPostBack最初の部分投稿が戻った後にすべてのコントロールが false に設定されるように、選択を 2 回目に変更しても何も起こりません)。
どんな助けでも大歓迎です
ありがとうございました