从包含在母版页中的 aspx 的用户控件访问母版页控件
我有一个包含在母版页中的 aspx 页面。我的 aspx 页面有来自用户控件的用户控件 (ASCX) 我正在打开一个弹出窗口,我想在其中获取母版页控件,我该怎么做。
I have a aspx page which enclosed in master page. My aspx page have user control (ASCX) from user control I am opening a pop up in which I want to get master page controls how can I do it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ASP.NET 的每个页面都有内部属性“Master”。从用户控件中,您可以向后遍历堆栈到用户控件父级>页码>掌握。如果母版页中的控件位于任何 contentplace 持有者之外,则可以使用 FindControl 方法获取该控件。如果它位于任何内容占位符内,则必须遍历到内容占位符,然后才能找到该控件。示例如下。
主控
内容页
用户控制
用户控制后面的代码
在我的例子中,母版页中的标签位于内容页之外。
ASP.NET has internal property for each page 'Master'. From usercontrol you can travese the stack backwards to Usercontrols parent > Page > Master. If the control in master page is outside any contentplace holders, you can get the control using FindControl method. If it is inside any content place holders, you have to traverse to the content place holder and then you can find the control. The example is below.
MASTER
CONTENT PAGE
USER CONTROL
USERCONTROL CODE BEHIND
In my case the Label in master page is outside content page.