J
Jeroen S.
Hi all,
I'm building a form dynamicly. Adding textboxes as needed in the
code-behind. They appear in a table.
When I submit the form I cannot read the values of the textboxes I created.
I guess I'm missing something.
Can someone enlighten me?
code goes like this:
"
Dim tbx_HuurTotMet As New System.Web.UI.WebControls.TextBox()
tbx_HuurTotMet.CssClass = "tbxHuurVan"
tbx_HuurTotMet.Text = strHuurTotMet
tHuurCell.Controls.Add(tbx_HuurTotMet)
tDetailRow.Cells.Add(tHuurCell)
"
Best,
Jeroen
I'm building a form dynamicly. Adding textboxes as needed in the
code-behind. They appear in a table.
When I submit the form I cannot read the values of the textboxes I created.
I guess I'm missing something.
Can someone enlighten me?
code goes like this:
"
Dim tbx_HuurTotMet As New System.Web.UI.WebControls.TextBox()
tbx_HuurTotMet.CssClass = "tbxHuurVan"
tbx_HuurTotMet.Text = strHuurTotMet
tHuurCell.Controls.Add(tbx_HuurTotMet)
tDetailRow.Cells.Add(tHuurCell)
"
Best,
Jeroen