BTW, if anyone wants the answer to this question with ASP here it is:
dim color
color = "#FFFFFF"
Do while rs.EOF
if color ="#FFFFFF" then
color = "#000000"
else
color = "#FFFFFF"
End if
Response.Write("<table width=" & """" & "400" & """" & " bgcolor=" & """" & color & """" & " height=" & """" & "25" & """" & " class=" & """" & "outlink" & """" & ">"

Response.Write("<tr>"

Response.Write("<td>"

Response.Write("<b><a href="

Response.Write("""" & "whatever.asp?parentid=" & rs("ParentID"

.Value & """"

Response.Write(" class=" & """" & "outlink" & """" & ">" & rs("Subject"

.Value & "</a></b>"

Response.Write("</td>"

Response.Write("</tr>"

Response.Write("</table>" & "<p>"

rs.movenext
loop