> Hallo Rene, ich denke in etwa so:
> lc = new LiteralControl("<br>");
> myPH.Controls.Add(lc);
> Gru�, Matthias

Jup danke. So geht es. Hier nochmal der Code:

        Sub ddList()
                If (CType(myDD.SelectedItem.Value, Integer) > 0) Then
                        Dim tbl As New HtmlTable()
                        Dim i As Integer = 1

                        Do While i <= CType(myDD.SelectedItem.Value, Integer)
                                Dim cl As New LiteralControl("<br>")
                                Dim myTB As New TextBox()

                                myTB.ID = "linkBez(" & i & ")"
                                myTB.Text = ""

                                i += 1
                                myPH.Controls.Add(myTB)
                                myPH.Controls.Add(cl)
                        Loop


                End If
      End Sub


Gru�
Rene

_______________________________________________
Asp.net mailing list
[EMAIL PROTECTED]
http://www.glengamoi.com/mailman/listinfo/asp.net

Antwort per Email an