protected void CheckBox1_CheckedChanged(object sender, EventArgs e)
{
if (CheckBox1.Checked == true)
{
DropDownList1.Enabled = true;
}
else
{
DropDownList1.Enabled = false;
}
}
為什麼這樣實現不了,求大神指導
控件的 auto postback有沒有設置為true