如何在母版页上使用反射?

发布于 2024-12-03 08:05:27 字数 117 浏览 0 评论 0原文

我想从内部用户控件调用 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 技术交流群。

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

发布评论

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

评论(1

彡翼 2024-12-10 08:05:27

您可以使用 界面 来解决此问题,而不是使用反射。为用户控件的任何需求定义一个接口,然后在母版页中实现它。

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.

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