MasterPage 和 ViewState (VB.Net)
好的,所以我编写了方法来重写 LoadPageStateFromPersistenceMedium 和 SavePageStateToPersistenceMedium 方法。现在的问题是我正在使用母版页,那么我如何维护使用母版页并仍然从 System.Web.UI.Page 继承?
请记住,母版页后面的 .vb 代码已经继承了 System.Web.UI.MasterPage。有人知道我如何在母版页中“正确”覆盖这些方法吗?
Ok So i have written methods to override the LoadPageStateFromPersistenceMedium and SavePageStateToPersistenceMedium methods. now the problem is that i am using a masterpage, so how do i maintain using my masterpage and still inherit from System.Web.UI.Page?
Please bear in mind that the .vb Code behind the masterpage already inherits System.Web.UI.MasterPage. Anybody know how i can "properly" override these methods in a MasterPage?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不会覆盖母版页中的那些内容。页面的主要对象仍然是Page对象,母版页实际上只是页面中的一个用户控件。
You don't override those in the master page. It's still the Page object that is the main object for the page, the master page is actually just a user control in the page.