如何在代码隐藏中使文本框只读属性为 false?
我有一个文本框。我想在事件期间将文本框只读属性设置为 true 或 false。
我通过以下代码将 TextBox readonly 属性设置为 true:
txtNoOff.Attributes.Add("readonly", "readonly");
但是如何使 textbox readonly 属性为 false?我已经尝试过如下:
txtNoOff.Attributes.Add("readonly", "false");
但它不起作用。如何实现这一目标?我需要你们所有的建议。
I have one TextBox. I want to make textbox readonly property true or false during an event.
I set the TextBox readonly property as true by the following code:
txtNoOff.Attributes.Add("readonly", "readonly");
But how to make textbox readonly property false? I have tried like below:
txtNoOff.Attributes.Add("readonly", "false");
But it does not work. How to achieve this? I need all ur suggestions please.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
请尝试
please try
尝试
Try
尝试
或
错误
Try
or
False
只需删除
readonly
属性即可:txtNoOff.Attributes.Remove("readonly");
Just remove the
readonly
attribute:txtNoOff.Attributes.Remove("readonly");