处理 asp.net 中 formview 中的控件

发布于 2024-11-30 10:04:47 字数 68 浏览 2 评论 0原文

如何从表单视图中包含的控件执行句柄,仅在代码中我可以看到表单视图,但看不到插入模板中的控件。

感谢您的帮助

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 技术交流群。

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

发布评论

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

评论(1

太阳公公是暖光 2024-12-07 10:04:47

您必须使用 FindControl 方法来查找控件。

TextBox txtEmail = (TextBox)FormView1.FindControl("ControldID");

这是因为 DataBound 控件中的控件无法直接访问。要访问这些控件,您必须使用 FindControl 方法并将其转换为适当的控件。

You have to use the FindControl method to find a control.

TextBox txtEmail = (TextBox)FormView1.FindControl("ControldID");

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.

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