从内容页面访问母版页属性
摘自本书:
要引用母版页中的公共属性,我们将 @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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
页面类具有对母版页类的引用(属性)。当请求页面时,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.