如何在代码隐藏中使文本框只读属性为 false?

发布于 2024-12-12 09:57:21 字数 333 浏览 2 评论 0原文

我有一个文本框。我想在事件期间将文本框只读属性设置为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

━╋う一瞬間旳綻放 2024-12-19 09:57:23

请尝试

txtNoOff.ReadOnly = false

please try

txtNoOff.ReadOnly = false
感性不性感 2024-12-19 09:57:23

尝试

txtNoOff.Attributes.Remove("readonly");

Try

txtNoOff.Attributes.Remove("readonly");
享受孤独 2024-12-19 09:57:23

尝试

textBoxName.ReadOnly=true

错误

Try

textBoxName.ReadOnly=true

or False

恋你朝朝暮暮 2024-12-19 09:57:22

只需删除 readonly 属性即可:txtNoOff.Attributes.Remove("readonly");

Just remove the readonly attribute: txtNoOff.Attributes.Remove("readonly");

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文