我的codebehind
.cs 文件(.NET.Framework 4.0)上有这个方法:
protected void CheckBox1_CheckedChanged(object sender, EventArgs e)
{
if (CheckBox1.Checked == true)
{
this.nombre.Enabled = false;
}
}
因此,nombre
每次单击复选框时,我都可以在我的 aspx 中禁用该 TextBox。
这是aspx文件中的代码:
<asp:CheckBox ID="CheckBox1" Checked="false" runat="server" OnCheckedChanged="CheckBox1_CheckedChanged" AutoPostBack="true"/>
现在,我想知道一种简化此例程的方法,我的意思是,我有很多文本框、单选按钮等...
那么如何使用loop
asp.net 来实现这一点呢?
提前致谢!