Create the table and repeating region, and check it works ok,
then in code
try replacing the single TR tag at the start of the row with
all of this:
<% If rowcolour = "pink" Then %>
<tr bgcolor="#FFCCFF"
onmouseover="style.backgroundColor='#CCCCCC'"
onmouseout="style.backgroundColor='#FFCCFF'">
<% rowcolour = "yellow" %>
<% Else %>
<tr bgcolor="#FFFFCC"
onmouseover="style.backgroundColor='#CCCCCC'"
onmouseout="style.backgroundColor='#FFFFCC'">
<% rowcolour = "pink" %>
<% End If %>
The rowcolour names are just variables, the HEX values are
what you'll need
to change. Be careful of editing - watch the single and
double quotes.
HTH,
Piers