Hello
I need to dynamically load web parts in code behind and display them on-screen.
I use LoadControl to create the web parts. In the web parts I need to read the property value:
this.GetValue("Title")
The GetValue will always return null, probably because of the fact the the control life cycle is not being triggered by the LoadControl method.
Is there another way to access the web part property value?
Thanks!