passing own created dropdownlist to existing dropdownlist
Hello,
I've created a class which contains a dropdownlist property.
Right now, I want to pass this dropdownlist to an existing one
VB Code:
in my class:
Public ReadOnly Property HoofdNummer() As DropDownList
Get
FillList
Return _HoofdNummer
End Get
End Property
This is on my page :
Dim oMachine As New Uitrusting
me.ddlExisting= oMachine.HoofdNummer
This seems to work if I look in debug mode, my ddlExisting receives all the values but once it's on the page, I don't see any values in the list.
Has anyone got a clue ?
Thx,
Bjorn