在我的 aspx 页面上,我有以下代码:
<asp:RadioButtonList ID="rdblReasonOption" runat="server"
AutoPostBack="true" OnSelectedIndexChanged="rdblReasonOption_SelectedIndexChanged">
<asp:ListItem Value="0" />
<asp:ListItem Value="1" />
</asp:RadioButtonList>
然后在我后面的代码中我有:
protected void rdblReasonOption_SelectedIndexChanged(object sender, EventArgs e)
{
btnSubmit.Visible = true;
}
但是,它永远不会触发,也不会发生回发。为什么会出现这种情况?