Hello. I'm creating a dynamic table from content in a database and I'd like every other row in the table to be a unique color so it's easier to read. I can't find the syntax in vbscript to do this. Logically, I would imagine it's something like
(x is a number)
if x = anOddNumber then
<tr bgcolor="grey">
elseif x = anEvenNumber then
<tr bgcolor="white">
end if
Can anyone help me with this?
(x is a number)
if x = anOddNumber then
<tr bgcolor="grey">
elseif x = anEvenNumber then
<tr bgcolor="white">
end if
Can anyone help me with this?