2012-03-11 377 views

回答

4

您的代碼與這兩個控件,應該是這樣的:

protected void CheckBox1_CheckedChanged(object sender, EventArgs e) 
{ 
    if (CheckBox1.Checked) 
     TextBox1.Enabled = true; 
    else 
     TextBox1.Enabled = false; 
} 
+0

或者只是'TextBox1的。 Enabled = TextBox1.Enabled;' – Gabe 2012-03-11 20:31:29

+1

@Gabe !!! >應該是'textbox1.enabled = checkbox1.checked;' – hamed 2012-03-11 20:53:22

+0

謝謝你快速回復。我一直在使用上面的代碼,但由於我在我的頁面上使用了更新面板。我無法做到這一點。但無論如何,我明白了。再次感謝。 – 2012-03-11 22:38:29

0

只使用
textbox1.enabled = true;