Hi,
I have a problem to using placeholder to add BDPLite.
The code is
protected sub button_Click(Byval sender As System.object, Byval e As System.EventArg)
{
dim a As dropdownlist = new dropdownlist
a.items.add("abc")
a.id = "aa"
Dim b As BasicFrame.WebControls.BDPLite = new BasciFrame.WebControls.BDPLite
b.id = "bb"
me.placeholder1.controls.add(a)
me.placeholder1.controls.add(b)
}
When I clicked the button, I can choose the item from dropdownlist. However, when I want to choose the date of BDPLite. The error message is ' "bpara" is undefined '. Could some one give me an suggestion? thank you very much