我有一个简单的 Windows 窗体应用程序,我必须迁移它才能在网页上运行,所以我正在尝试使用 aspx(c#)。
我有两个单选按钮,但有时只应检查其中一个。我从原始应用程序中实现了完全相同的代码,但它不起作用:
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;
}
}
那么为什么这些更改没有应用到页面上呢?