RISOLTO(credo) grazie a te!

Semplicemente con un array di UserControl

codice:
Dim uc() As UserControl 

   ReDim uc(3)

   For i As Integer = 1 To 3 

      uc(i) = LoadControl("/ctlProva.ascx")

      If Not IsNothing(uc) Then

         uc(i).ID = "uc" & i 

         myPlaceholder.Controls.Add(uc(i))

      End If 

   Next

postato il codice fatto! Magari serve a qualcuno!

grazie ancora Mod