I\'v got a combobox that I created as a user control(it\'s actually made up of a label, combobox and textbox). I\'m trying to bind a dataset to the combobox datasource, but
Surely the fragment of code below is going to cause an issue?
public string value
{
get { return _value ; }
set { _value = value; }
}
You need to name this something else e.g. comboValue. "value" represents the implicit variable passed into a property declaration.
i.e.
public string comboValue
{
get { return _value ; }
set { _value = value; }
}