I have a dynamic control which creates elements depending on arguments given in the tag:
<Custom:someTag param_1="some value" .../>
The ascx file contains a form - and depending on a value given I need to add a number of controls. this works fine if I want to just add the controls directly to the form, but in reality I need to be able to format the output.
Ideally I would like to add the controls to a HtmlTable, format it, and then add that as a control to the form. Trouble is, the form can't see the controls when I do that, because the controls are in one of the table cells.
Is it possible to make the parent control see all the nested ones?
<bb/>
<Custom:someTag param_1="some value" .../>
The ascx file contains a form - and depending on a value given I need to add a number of controls. this works fine if I want to just add the controls directly to the form, but in reality I need to be able to format the output.
Ideally I would like to add the controls to a HtmlTable, format it, and then add that as a control to the form. Trouble is, the form can't see the controls when I do that, because the controls are in one of the table cells.
Is it possible to make the parent control see all the nested ones?
<bb/>