Hello.
I have a WebPartBase.cs class that inherit from UserControl and IWebPart.
namespace
grupo.WebParts{
public class WebPartBase : UserControl, IWebPart {
.........
This class is used in multiple UserControls, for instance:
public
partial class webparts_news : grupo.WebParts.WebPartBase {
..........
I like to add ExportMode=All in my WebPartBase class, but IWebPart interface doesn?t have this property. I would like inheriting from 2 classes (UserControl and WebPart) to do it, but It's impossible in .NET 2.0.
Any posibilities?