I am having trouble getting the parser to create objects when it parse child nodes with a User Control, I have had no trouble when using a Server Control.
I am filling an ArrayList with the child controls - but they are filled with nothing - no objects have been created.
I think it has something to do with the way they are declared
<Toolkit:Upload id="UPLOADER" runat="server">
<Parameter Name="something" Value="some Value"/>
<Parameter Name="something-else" Value="nothing"/>
</Toolkit:Upload>
My output tells me my array has 2 things in it - but they are empty.
I have a class in the source dll for the ascx page corresponding to the Upload control called Parameter, which should be created when the Parameter tag is created.
If I try using Toolkit
arameter - then I get an error.
I am filling an ArrayList with the child controls - but they are filled with nothing - no objects have been created.
I think it has something to do with the way they are declared
<Toolkit:Upload id="UPLOADER" runat="server">
<Parameter Name="something" Value="some Value"/>
<Parameter Name="something-else" Value="nothing"/>
</Toolkit:Upload>
My output tells me my array has 2 things in it - but they are empty.
I have a class in the source dll for the ascx page corresponding to the Upload control called Parameter, which should be created when the Parameter tag is created.
If I try using Toolkit