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?
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.