Webページで実行するために移行する必要がある単純なWindowsフォームアプリがあるため、aspx(c#)を試しています。
2 つのラジオ ボタンがありますが、そのうちの 1 つだけをチェックする必要があります。元のアプリとまったく同じコードを実装しましたが、機能しません:
protected void RadioButton1_CheckedChanged(object sender, EventArgs e)
{
if (RadioButton1.Checked == true)
{
RadioButton2.Checked = false;
}
}
protected void RadioButton2_CheckedChanged(object sender, EventArgs e)
{
if (RadioButton2.Checked == true)
{
RadioButton1.Checked = false;
}
}
では、なぜこれらの変更がページに適用されないのでしょうか?