使用 MasterPage 时访问页面控件
我尝试编写一个小函数来将表单重置为默认值。因此,我想访问页面的控件。我正在使用母版页。也许正因为如此,我无法通过 Page.Controls 访问 ContolsCollection。
有什么解决办法吗?
I tried to write a little function to reset the form to default. Therefore, I want to access the Controls of the page. I'm using a MasterPage. Maybe because of that, I have no access to the ContolsCollection via Page.Controls.
Any solutions for that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
母版页本身内的 ContentPlaceHolder 包含页面的所有控件,
因此,您可以使用以下方式访问它们:
请记住,代码将为继承此母版页的所有子页面运行,因此如果其中之一不包含“btnSubmit”(在上面的示例中),您将得到 null。
The ContentPlaceHolder within the master page itself contains all the page's controls,
So you can access them using:
Keep in mind that the code will be running for all child pages that inherit this master page, so if one of them does not contain "btnSubmit" (in the example above), you'll get null.
通过使用母版页,您无法使用 FindControl() 函数访问任何控件,因为页面位于母版页的 contentPlaceHolder 内,因此您可以使用递归访问所有控件,例如:
By the use of master page you can not access any control by using FindControl() function because Page is within masterpage's contentPlaceHolder, so you can access all control by the use of Recursion like:
这里是解决方案:
您必须迭代所有控件并检查它们本身是否具有控件。所以你做这个递归:
Here the solution:
You have to iterate all controls and check is they have controls themselves. So you do this recursive: