D
Doug Holland
I'm writing a custom DropDownList control which has a constructor of the form:
public SomeDropDownList(ISomeInterface someInterface)
{
m_object = someInterface;
}
I then override the OnPreRender method however when I get into the
OnPreRender method m_object is null.
Any suggestions?
Regards,
Doug Holland
public SomeDropDownList(ISomeInterface someInterface)
{
m_object = someInterface;
}
I then override the OnPreRender method however when I get into the
OnPreRender method m_object is null.
Any suggestions?
Regards,
Doug Holland