Is it possible to inherit from a base class and still add additional functionality to a web form?
I have a web form (InheritanceDemo.aspx) that inherits from my base class. I then wanted to add some additional functionality and controls not referenced in my base class but the compiler didn't like that.
I guess I essentially want two code behind files. One that InheritanceDemo can inherit from (SimpleCodeBehind.
vb) and then one to handle the additional code-behind operations - InheritanceDemo.aspx.
vb