在我的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;
}
但是,它永远不会触发,也不会发生回发。为什么会这样?