Hallo,

>       
>         Protected Overrides Sub CreateChildControls()
>             Controls.Clear()
>             Dim row As New TableRow
>             Dim textBoxCell As New TableCell
>             Dim buttonCell As New TableCell
>             Dim lbCell As New TableCell
>             Dim lb As New Label
> 

stand mal vor dem gleichen Problem, habe es damals
so gel�st:

protected override void Render(HtmlTextWriter output)
{
        this.EnsureChildControls();
        this.RenderChildren(output);
}

protected override void EnsureChildControls()
{
        this.CreateChildControls();
        base.EnsureChildControls ();
}

wei� nicht, ob es die Ideall�sung ist, hatte damals
aber auch leider keine Zeit, um danach zu suchen - aber
es funktioniert.

Gruss

Alex


*************************
_______________________________________________
This ASP.NET email is sponsored by:
UDEX ProMenu.Net  - Die Software f�r Navigation - Jetzt kostenlos testen!
Tree- Style, Horizontal- Slide, Vertical- Slide. http://www.udexnet.com

_______________________________________________
Asp.net Mailingliste, Postings senden an:
[EMAIL PROTECTED]
An-/Abmeldung und Suchfunktion unter:
http://www.glengamoi.com/mailman/listinfo/asp.net
*************************

Antwort per Email an