G
goosemanjack
This is my problem:
I have a custom border implemented as a servercontrol. Itexposes a property for adding design-time elements which is apanel internally:
[ParseChildren(true)]
[PersistChildren(false)]
public class BorderTable : System.Web.UI.WebControls.WebControl
{
...
[PersistenceMode(PersistenceMode.InnerProperty)]
public Panel TableContents
{
get { return contents; }
}
...
}
In some cases controls will not execute while inside thiscontrol. In other cases they will. All built-in .net controlswork fine. The servercontrol can nest within itself fine.
A custom 3rd party server control won't execute within it. Now ausercontrol won't execute within it (render is OK, but no codeis executed). The border within the usercontrol is fine, butnesting the usercontrol on a page inside another servercontrolcauses failure.
Any ideas appreciated.
User submitted from AEWNET (http://www.aewnet.com/)
I have a custom border implemented as a servercontrol. Itexposes a property for adding design-time elements which is apanel internally:
[ParseChildren(true)]
[PersistChildren(false)]
public class BorderTable : System.Web.UI.WebControls.WebControl
{
...
[PersistenceMode(PersistenceMode.InnerProperty)]
public Panel TableContents
{
get { return contents; }
}
...
}
In some cases controls will not execute while inside thiscontrol. In other cases they will. All built-in .net controlswork fine. The servercontrol can nest within itself fine.
A custom 3rd party server control won't execute within it. Now ausercontrol won't execute within it (render is OK, but no codeis executed). The border within the usercontrol is fine, butnesting the usercontrol on a page inside another servercontrolcauses failure.
Any ideas appreciated.
User submitted from AEWNET (http://www.aewnet.com/)