hola soy muy nuevo en esto...
el asunto es el siguiente, creo una tabla dinamica (todo va bn) en cada celda creo textbox cuyos datos c llenan desde la base de datos...
el usuario hará cambios sobre esos textbox.. pero cuando voy a guardar... tomala, la tabla dinamica esta vacia.
intente hacer un postback parcial, para q' no destruyera la tabla, pero aun asi, lo hace.
aca esta el codigo, de antemano gracias por su ayuda.
For aux = 1 To lista.Count
Dim r As New TableRow()
Dim c1 As New TableCell()
Dim c2 As New TableCell()
Dim c3 As New TableCell()
Dim c4 As New TableCell()
Dim lblp As New Label
lblp.ID = "lbl" + lista(aux - 1).nombre
lblp.Text = lista(aux - 1).nombre
Dim txtf As New TextBox
txtf.ID = "txtf" + lista(aux - 1).nombre
txtf.Text = listapoblacionproyecto(aux - 1).cantidad
Dim txtm As New TextBox
txtm.ID = "txtm" + lista(aux - 1).nombre
txtm.Text = listapoblacionproyecto(aux + lista.Count - 1).cantidad
Dim lblt As New Label
lblt.ID = "lblt" + lista(aux - 1).nombre
lblt.Text = (Integer.Parse(txtf.Text) + Integer.Parse(txtm.Text)).ToString
c1.Controls.Add(lblp)
c2.Controls.Add(txtf)
c3.Controls.Add(txtm)
c4.Controls.Add(lblt)
r.Cells.Add(c1)
r.Cells.Add(c2)
r.Cells.Add(c3)
r.Cells.Add(c4)
Table1.Rows.Add(r)
Next