问题描述
- 在C# 选中复选框后,下拉列表框可用,否则不可用
-
protected void CheckBox1_CheckedChanged(object sender, EventArgs e)
{
if (CheckBox1.Checked == true)
{
DropDownList1.Enabled = true;
}
else
{
DropDownList1.Enabled = false;
}
}
为什么这样实现不了,求大神指导
解决方案
控件的 auto postback有没有设置为true
时间: 2024-09-18 10:14:21