G Guest May 16, 2006 #1 How can I pass parameters to a userControl so I have my drop down in the userControl populate with the correct data?
How can I pass parameters to a userControl so I have my drop down in the userControl populate with the correct data?
O OJ May 16, 2006 #2 create public properties in your usercontrol..... private string _Title; public string Title {set {_Title=value}} Hth, Oli
create public properties in your usercontrol..... private string _Title; public string Title {set {_Title=value}} Hth, Oli