Hello everybody,


I'm trying to load twice the same usercontrol on my webpage with this code :
VB Code:
  1. Dim myCtl1 As Colli = Page.LoadControl("colli.ascx")
  2.         Dim myCtl2 As Colli = Page.LoadControl("colli.ascx")
  3.  
  4.         'Controls.Add(myCtl1)
  5.         PlaceHolder1.Controls.Add(myCtl1)
  6.  
  7.         PlaceHolder2.Controls.Add(myCtl2)

It only appears once My placeholder 2 is much lower on my page, so they aren't on top of each other.

Anyone has ideas if this is possible ?


Thanks,

Bjorn