L'assegnazione alla nuova CKVersa devi farla NEL ciclo, non fuori
codice:Dim Id_Utenti As String = "" Dim i As Integer = 0 For Each Riga As GridViewRow In Grid.Rows If Riga.RowType = DataControlRowType.DataRow Then Dim CKVersa As CheckBox = CType(Riga.FindControl("CKVersa"), CheckBox) If CKVersa.Checked Then Id_Utenti &= IIf(i = 0, Riga.Cells.Item(0).Text, ";" & Riga.Cells.Item(0).Text) End if End If Next