[code=vb]' Determine what roles the selected user belongs to
Dim strSelectedUser Name As String = ddlUserList.Sel ectedValue
Dim strSelectedUser sRoles() As String = Roles.GetRolesF orUser(strSelec tedUserName)
Dim strRoleNames() As String = Roles.GetAllRol es.Clone

' Loop through the Repeater's Items and check or uncheck the checkbox as needed
For Each...