如何在母版页上使用反射?
我想从内部用户控件调用 masterPage 的方法 (另一个用户控件内的用户控件)。
问题是内部控件在编译时不知道其母版页的类型。 如何在母版页上使用反射来查找特定方法并调用它?
谢谢
I want to invoke a masterPage's method from a inner user-control
(user control inside another user-control).
The thing is that the inner control doesn't know the type of its master page at compile time.
How can I use reflection on the master page to find a specific method and invoke it?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 界面 来解决此问题,而不是使用反射。为用户控件的任何需求定义一个接口,然后在母版页中实现它。
Instead of using reflection you could solve this by using an interface. Define an interface for whatever the user control needs are and then implement it in the master page.