So I have a table in ASP.NET
<table runat="server" id="tblMyTable" >
<tr>
<td id="cellMyCell" >word</td>
</tr>
</table>
How do I reference the cell "cellMyCell " from the Vb.NET 1.1 code-behind to
change the background color of the cell?
<table runat="server" id="tblMyTable" >
<tr>
<td id="cellMyCell" >word</td>
</tr>
</table>
How do I reference the cell "cellMyCell " from the Vb.NET 1.1 code-behind to
change the background color of the cell?
Comment