Re: Subclassing a web page
By "subclass" do you mean "derive from"?
Re: Subclassing a web page
I think thats right woss. They used the term subclass, so that is how I presented the issue here. What I want to be able to do is access some of the public (or protected) methods and variables they used in the code behind.
Re: Subclassing a web page
you would be looking to inherit a page from that page
in your standard code behind you usually have this
Inherits System.Web.UI.Page
so if you changed that to
Inherits SomeProject.SomePage
then you will inherit the page you want, which itself inherits from System.Web.UI.Page, so you get everything you need (this of course also needs to rely on the original programmer making everything accessable that you need to be)