It's not a question of ASP, but of HTML.
Either set the table cell's background color:
<td bgcolor="#FF0000"></td>
Or you could use inline styles:
<td style="background-color:#FF0000;"></td>
Or you could use CSS:
<style>
TD.down{ background-color:#FF0000; }
</style>
<td class="down"></td>
I'd recommend using CSS as this is more standard and would reduce the overall HTML weight of your page.
Peter
------------------------------------------------------
Work smarter, not harder.
|