I have these classes :
public class myClassPage : System.Web.UI.Page
{
public myClassPage ()
{
}
}
public class myClassControl : System.Web.UI.UserControl
{
public myClassControl ()
{
}
}
and I'd like have another Class that extends these classes, something like this :
public class myClassData : myClassPage, myClassControl
{
public myClassData ()
{
}
}
is it possible to do this or is there something else I could do?