Help with inheritence
Okay C# gurus, I could use your help on this one. Here is what I am trying to do. This is my class hierarchy:
MyImageButton
ImageButton
Image
Here is what I am trying to do. In MyImageButton I am going to override AddAttributesToRender on ImageButton as there is some logic in the ImageButton implementation that I don't want executed. At the same time though I still want to call AddAttributesToRender on Image. When I am done doing my own implementation of AddAttributesToRender in MyImageButton, I want to skp executing the method on ImageButton, but still want to call the method on Image.
How do I do this?