The following code:
If checkboxList.Items(i).Selected Then
.Fields("DESC1").Value += checkboxList.Items(i).Text + ", "
End If
should output output such as "A, B, C, (space)", which will then be associated with dynamically generated GridView. I would like to remove the last line of two char, that is, ", (space)". How can i do this?
source
share