<table width="286" border="1">
<tr>
<td>Column1</td>
<td>Column1</td>
<td>Column1</td>
</tr>
<%
Dim i
Dim BgColor
For i = 0 To 10
If i Mod 2 = 0 Then
BgColor="#CCCCCC"
Else
BgColor="#FFFFFF"
End IF
%>
<tr bgcolor="<%=BgColor%>">
<td>Rows </td>
<td>Rows </td>
<td>Rows </td>
</tr>
<%
Next
%>
</table>