Hi all:
I have a sub where I create some controls
For intj = 1 To intcolumnas
tc = New TableCell
tbl2 = New Table
intnumero = (inti - 1) * 3 + intj
tr2 = New TableRow
tc2 = New TableCell
lit = New Literal
lit.Text = "<b>" & intnumero & ". "
tc2.Controls.Add(lit)
lbl = New Label
lbl.Text = "*"
lbl.ForeColor = Drawing.Color.Red
tc2.Controls.Add(lbl)
loc = New Localize
tc2.Controls.Add(loc)
loc.Text = "Título"
tr2.Cells.Add(tc2)
tc2 = New TableCell
txt = New TextBox
tc2.Controls.Add(txt)
txt.ID = "txtque" & intnumero
...
Go to the complete details ...