hello everyone, it's not a telerik issue, hope someone will answear anyway
My aspx page loads user controls (ascx) dinamically
code example:
those ascx raise events that I have to catch on aspx page
I don't have any idea how to do it.
Having load user controls dinamically I don't know where to write the code, how do i catch them?
Thank you
My aspx page loads user controls (ascx) dinamically
code example:
ASCXlist.Add("/Admin/ASCX/Seasons.ascx")
ASCXlist.Add("/Admin/ASCX/Arrangements.ascx")
Dim UControl As Control PlaceHolder_UC.Controls.Clear()
For Each l As String In ASCXlist
UControl = New Control
UControl = CType(LoadControl(l), UserControl)
PlaceHolder_UC.Controls.Add(UControl)
Next
those ascx raise events that I have to catch on aspx page
I don't have any idea how to do it.
Having load user controls dinamically I don't know where to write the code, how do i catch them?
Thank you