从只读 gridview 获取文本框值
我有一个网格视图,其项目模板上几乎没有文本框,由于业务要求,我必须禁用这些文本框。 现在,我必须从后面的代码中读取文本框值。您能否告诉我是否可以从 gridview 获取只读文本框值。
I have a gridview on which Item template has few textbox, due to business requirement I have to disable those textbox.
Now, I have to read the textbox value from code behind. Could you tel me if that is possible to get read only textbox value from gridview.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
诀窍是不要在设计模式下设置控件的
ReadOnly
属性。存在类似的问题:
解决方法通过客户端脚本更改时访问服务器端的只读文本框值
另外,您可能还需要检查以下内容:
如何在代码隐藏或 CS 中获取只读文本框值文件
如何获取服务器上的只读文本框值
希望它有帮助!
The trick is to not set the
ReadOnly
property on the control in design mode.A similar question exists:
Workarounds to access the Readonly Textbox value on server side when changed through client side script
Also, additionally you may want to check out the following:
How to get readonly textbox value in codebehind or CS file
How to get the readonly textbox value on the server
Hope it helps!