タイトルに書いたように、RadioButton の選択を変更しようとすると、コード ビハインドが間違った値を取得します。
ジレンマ.aspx:
<asp:RadioButtonList ID="rbList" runat="server">
<asp:ListItem Text="Yes, please." />
<asp:ListItem Text="No, thanks." />
<asp:ListItem Text="Ummm... maybe." />
</asp:RadioButtonList>
<asp:Button ID=""btnChoose" runat="server" text="OK" OnClick="btnChoose_Click" />
ジレンマ.aspx.cs:
protected void Page_Load(object sender, EventArgs e)
{
int initialIndex = GetInitialIndex(); // Simplified for sake of question.
rbList.SelectedIndex = initialIndex; // This works.
}
protected void btnChoose_Click(object sender, EventArgs e)
{
int selection = rbList.SelectedIndex; // This gets it wrong!
}
コード ビハインドは、新しく選択された RadioButton を取得する代わりに、選択されたインデックスが初期インデックスであると認識します。
なんで?