Hello everybody,
I'm trying to load twice the same usercontrol on my webpage with this code :
VB Code:
Dim myCtl1 As Colli = Page.LoadControl("colli.ascx") Dim myCtl2 As Colli = Page.LoadControl("colli.ascx") 'Controls.Add(myCtl1) PlaceHolder1.Controls.Add(myCtl1) PlaceHolder2.Controls.Add(myCtl2)
It only appears onceMy 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




My placeholder 2 is much lower on my page, so they aren't on top of each other.
Reply With Quote