Hi,
i have a database with a column from where i retrieve values in a checkboxlist. the user can than choose some of the values and by pressing a button the values are transported into a textbox in a comma separated string. then when the user saves the values
in the textbox, the whole string gets saved into a column in the database in one string. now when the user retrieves the record from the database i fill up the textbox with the comma separated items and when user clicks a button which brings up the checkboxlist
to update the list, i want the saved items from the checkbox te be checked in the checkboxlist, but i don't know how to do this.
here is my code so far, so below i have a modelpopup screen with a checkboxlist and a insert button in it. when choosing the items and pressing insert, the values are put in a textbox commaseparated.
Protected Sub Btninsert_Click(ByVal sender As Object, ByVal e As EventArgs)
  ...
Go to the complete details ...