我将如何使用控件从同一主文件的另一个页面部分获取信息
我有一个主文件,其中有一个带有按钮的标题控件,以及 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查 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.