2つの更新パネルを備えたWebフォームがあります。
<asp:ScriptManager ID="ScriptManager1" runat="server" ScriptMode="Release">
</asp:ScriptManager>
<p>
<asp:UpdatePanel ID="upl1" runat="server">
<ContentTemplate>
<asp:Button runat="server" ID="btn1" Text="Button1" />
</ContentTemplate>
</asp:UpdatePanel>
<asp:UpdatePanel ID="upl2" runat="server">
<ContentTemplate>
<asp:Button runat="server" id="btn2" Text="Button2" />
</ContentTemplate>
</asp:UpdatePanel>
</p>
をクリックbtn1
すると、のロードイベントupl2
がトリガーされupl1
ます。
upl1
これはボタンを含む更新パネルであるため、ロードされることだけを期待します。
Why isn't this happening, and how can I make it happen?