Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的操作中,我想编辑员工列表。在这个时候我使用下面的语句来禁用列表框。
this.lstbox.Attributes.Add("Disabled", "");
更新后使用以下代码启用列表框。
this.lstbox.Attributes.Add("enabled", "");
第一个条件工作正常,但第二个条件不返回任何错误并且列表框未启用。
请帮我解决这个问题..
我认为您应该删除“已禁用”属性:
lstbox.Attributes.Remove("Disabled");
没有接触过asp.net,但在查看:“列表框启用示例”之后
你不能写:
lstbox.Enabled = true; lstbox.Enabled = false;