NBartomeli
Programmer
In 1.1, I was able to say something like
Since everything is partial classes in 2.0, how can I accomplish this?
Thanks.
Code:
dim x as control = loadcontrol("../control.ascx")
Controls.add(x)
dim y as MyCustomControlType = CType(x, MyCustomControlType)
'or
CType(x, MyCustomControlType).SomeParameter = 1234
Since everything is partial classes in 2.0, how can I accomplish this?
Thanks.