C
crab.dae
Not sure if any one can help but I'm loading data into a table that
I've like to alternate the background color of the rows (White then
pink). Can someone tell me what I need to add to do this?
======================================================
While Not rsData.EOF
response.write "<tr><td width=225 align=left><font size=1>"
response.Write rsData("NAME")
response.Write "</font></td>"
response.write "<td width=225 align=left><font size=1>"
response.Write rsData("ADDRESS")
response.Write "</font></td>"
response.write "<td width=225 align=left><font size=1>"
response.Write rsData("PHONE")
response.Write "</font></td></tr>"
rsData.MoveNext
WEnd
=======================================================
Thanks!!
I've like to alternate the background color of the rows (White then
pink). Can someone tell me what I need to add to do this?
======================================================
While Not rsData.EOF
response.write "<tr><td width=225 align=left><font size=1>"
response.Write rsData("NAME")
response.Write "</font></td>"
response.write "<td width=225 align=left><font size=1>"
response.Write rsData("ADDRESS")
response.Write "</font></td>"
response.write "<td width=225 align=left><font size=1>"
response.Write rsData("PHONE")
response.Write "</font></td></tr>"
rsData.MoveNext
WEnd
=======================================================
Thanks!!