Here's a code sample that might come in handy. This is a CheckBoxList for a fictitious
Real Estate broker who wishes to maintain a list of features for each property listing
entered in the system. Typically, you would create a form to add a listing and another to edit an existing listing. Loading the selected values for a CheckBoxList from the database often causes confusion and this snippet uses a Non-Typed-DataSet and a stored procedure.
You may notice that there is also a custom validator used, to ensure that at least one
selection has been made in the CheckBoxList. It would be nice to add a JavaScript version
of this on the client also. The following snippet is part of the page load method.
Here's the code to grab the selected values from the in-memory DataSet...
This is the call to the stored procedure from the DALC (Data Access Layer Class); the
business layer method is simply a pass-through call.
Next up is a pretty basic stored procedure which simply grabs the fields containing the
text for the ChekBoxList items and the corresponding boolean value, indicating whether or
not they were originally selected.