P
poi
In VS.NET 2003, I get intellisense if I do this:
LiteralControl literalControl = new LiteralControl();
literalControl.ID = "something";
literalControl.Controls.Add.....
And it compiles fine but I get an error saying that the LiteralControl
does not allow child controls.
So which controls *do* allow children, since VS.NET is not helping me?
Thanks.
LiteralControl literalControl = new LiteralControl();
literalControl.ID = "something";
literalControl.Controls.Add.....
And it compiles fine but I get an error saying that the LiteralControl
does not allow child controls.
So which controls *do* allow children, since VS.NET is not helping me?
Thanks.