I have a table that has server controls:
<td style="width: 100px; height: 23px; background-color: #ffffcc" id="TD1" runat="server">
In my code being I need to fill cells with data from a dataset and not sure if this is possible:
Code:
Dim myRow As Data.DataRow
Dim i As Integer = 0
For Each myRow In mySqlDataTable.Rows
td1.???????? (i, myRow.Item(0))
Next