Checkbox list control 2010
On a new C# 2010 asp.net web forms application, I want to add a checkbox list to the web page. I want to bind the checkbox list to a linq data source. The checkbox list will be displayed with items a user can select from based upon what organzation a user picks from in a type ahead text box. Can you tell me and/or refer me to reference(s) that will accomplish this goal? At least a reference on how to use the checkboxlist control?
Answers (2)
0
Add button should to add a new record to the DataTable displayed in DataGrid:
myDataTable.ImportRow(new object[]{ myCombo.Text, null, null });
etc.