I have a htmltable. Each of the cell of the table is identified by an ID, for example 0001 and so on. The table has not a fixed dimension, but dynamic, so there can be 20 or more cells depending on how much values are stored in the db. I would like to change the backgorund color of the textbox of a specific cell. But don't know how to access the cell.
I know this syntax:
// the whole background becomes green
myTable.BgColor = "#008000";
// I see no changes
myTable.Rows[x].Column[y].BgColor = "#008000";
// I need a syntax like this
myTable.Cell(Id_cell).BgColor = "#008000";