Forum Moderators: open
I am adding this control pragmatically
..
Dim ctl As Control = LoadControl("Controls/seealso.ascx")
CType(ctl, SeeAlso).Type = Make
CType(ctl, SeeAlso).Category = Model
plcSeeAlso.Controls.Add(ctl)
'plcSeeAlso placeholder
..
How can I retrieve value from this control
I am trying
Dim bChecked As CheckBox = plcSeeAlso.FindControl("chkGetQuote")
but it returns nothing
thanks