I have a form containing a GridView control that binds to an ObjectDataSource control. There are several TextBox controls that are already used as ControlParameters for ObjectDataSource. I also have a custom data object that the ObjectDataSource object is associated with {TypeName = "myDataClass"}. Values ββare passed from the ObjectDataSource to myDataClass.
Now I need to also use the Multi-Select ListBox as a ControlParameter. When I use the SelectedValue ListBox parameter, ObjectDataSource only sees the first selected item in the list.
This begs the question: how can I get all the MultiBit ListBox values ββpassed to my custom object "myDataClass", and not just the first one selected? Therefore, ["multi-select"]
Thanks for any help!
source
share