从内容页面访问母版页属性

发布于 2024-08-19 23:17:06 字数 207 浏览 6 评论 0原文

摘自本书:

要引用母版页中的公共属性,我们将 @MasterType 声明添加到内容页并使用 Master 引用该属性。

问题:但是内部发生了什么?主页和内容页的所有属性、功能是否都被编译到一个类中?或者其他什么?

FROM BOOK:

To reference public properties in a master page, we add the @MasterType declaration to the content page and reference the property using Master.<PropertyName>.

QUESTION: But what happens internally? Does all of the master's and content page's properties, function gets complied into one class? Or something else?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

清泪尽 2024-08-26 23:17:06

页面类具有对母版页类的引用(属性)。当请求页面时,asp.net 会实例化页面类中的对象,并将母版页属性设置为母版页的实例。

The page class has a reference (property) to the master page class. When a page is requested asp.net instantiate a object from your page class and set the master page property to a instance of the master page.

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