处理 asp.net 中 formview 中的控件
如何从表单视图中包含的控件执行句柄,仅在代码中我可以看到表单视图,但看不到插入模板中的控件。
感谢您的帮助
How can I do a handles from a control contened in a formview, in code only i can see formview but not the controls in the inserttemplate.
thank for any help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用 FindControl 方法来查找控件。
这是因为 DataBound 控件中的控件无法直接访问。要访问这些控件,您必须使用
FindControl
方法并将其转换为适当的控件。You have to use the FindControl method to find a control.
This is because the controls that are in the DataBound Controls are not directly accessible. To Access these controls, you have to use the
FindControl
method and cast it in appropriate control.