我在udpate面板中有两个单选按钮。第一个单选按钮没有回发,而另一个没有。第一次页面加载第一个单选按钮被选中,当选择第二个单选按钮时,checkchanged事件将被触发。但当我回到第一个单选按钮,然后选择第二个单选按钮时,checkchanged事件不会触发。有什么建议??代码低于
<asp:UpdatePanel ID="Update" runat="server" UpdateMode="Conditional">
<ContentTemplate>
<asp:RadioButton ID="rdo1" runat="server" class="bodycontent" GroupName="status" Checked="true" />
<asp:RadioButton ID="rdo2" runat="server" class="bodycontent" GroupName="status"
OnCheckedChanged="rdo2_CheckedChanged" AutoPostBack="true" />
<asp:CheckBox ID="chk1" runat="server" AutoPostBack="true" OnCheckedChanged="chk1_CheckedChanged" />
</ContentTemplate>
<Triggers>
<asp:AsyncPostBackTrigger ControlID="rdo2" />
<asp:AsyncPostBackTrigger ControlID="chk1" />
</Triggers>
</asp:UpdatePanel>