Hi guys,
here is my code
i am able to populate the textboxes in the table but not able to retrieve the values from it can anyone help me out in thisCode:For j = 0 To ds.Tables(1).Rows.Count - 1 Dim rw As New TableRow For k = 0 To ds.Tables(1).Columns.Count - 1 Dim cel As New TableCell Dim txt As New TextBox txt.ID = "cel" & j & k txt.Text = ds.Tables(1).Rows(j).Item(k) cel.Controls.Add(txt) rw.Cells.Add(cel) Next tbl.Rows.Add(rw) Next
thank u




Reply With Quote