Hi, i am using vb to create a table, i then add that table as a control do a <div>. The data within the table comes from a select statement. When i change my select statement the data that appears in the webpage is always the first data that was acquired originally even though when I debug i see the table being set with the new values
below is a sample of the controls used
Dim table1 As New HtmlTable
Dim r As New HtmlTableRow
Dim c As New HtmlTableCell
Dim txtBox As New HtmlInputText
Dim commentaires As New HtmlTextArea
table1.Border = 0
c.Controls.Add(New LiteralControl("BT :"))
r.Cells.Add(c)
c = New HtmlTableCell
txtBox.ID = "bt" & i
txtBox.Value = equipe(i).getBT
c.Controls.Add(txtBox)
r.Cells.Add(c)
table1.Rows.Add(r)
ba.Controls.Add(table1)