我将如何使用控件从同一主文件的另一个页面部分获取信息

发布于 2024-08-16 23:30:45 字数 125 浏览 2 评论 0原文

我有一个主文件,其中有一个带有按钮的标题控件,以及 ContentPlaceHolder,它是另一个带有多个文本框的页面。

当我按下标题中的按钮时,我需要遍历所有文本框并抓取它们的文本,我该如何使用 C# 来做到这一点?

I have a Masterfile that has a header control with a button, and the ContentPlaceHolder which would be another page with multiple text boxes.

When I press the button in the header, I need to iterate through all the text boxes and grab their text, how exactly would I do this using C#?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

箜明 2024-08-23 23:30:45

检查 ContentPlaceHolder 是否为 null,如果成功,则循环遍历所有占位符控件,从所有 TextBox 中获取文本。或者,您可以使用 ContentPlaceHolder 的 FindControl 方法。

Check the ContentPlaceHolder for null and if that succeeds, loop through all of the placeholder's controls, grabbing the text from all the TextBoxes. Alternatively, you could use the ContentPlaceHolder's FindControl method.

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