MavrickStl
Programmer
I am trying to build a table from a record set returned by Oracle as follows:
If not rsnew.EOF then
Response.Write _
"<TABLE BORDER=""1"" CELLSPACING =""3"" CELLPADDING=""3"">" & _
" <TR> " & _
"<TH><FONT face=helvetica,arial,sans-serif color=#660000 SIZE=""-1"">"
Response.write "</TR>"
Do While not rsnew.EOF
Response.Write "<TR ALIGN = left>"
Response.Write _
"<TD><FONT face=helvetica,arial,sans-serif color=#660000>"&rsnew("desc1"&" </TD>" & _
"</TR>"
rsnew.MoveNext
Loop
Response.Write "</TABLE>"
End if
My problem is I want to make 1st, 6th, 11th, 16th and 21st row the table BOLD or with a different background color?
Can anybody help me out....
Mav
If not rsnew.EOF then
Response.Write _
"<TABLE BORDER=""1"" CELLSPACING =""3"" CELLPADDING=""3"">" & _
" <TR> " & _
"<TH><FONT face=helvetica,arial,sans-serif color=#660000 SIZE=""-1"">"
Response.write "</TR>"
Do While not rsnew.EOF
Response.Write "<TR ALIGN = left>"
Response.Write _
"<TD><FONT face=helvetica,arial,sans-serif color=#660000>"&rsnew("desc1"&" </TD>" & _
"</TR>"
rsnew.MoveNext
Loop
Response.Write "</TABLE>"
End if
My problem is I want to make 1st, 6th, 11th, 16th and 21st row the table BOLD or with a different background color?
Can anybody help me out....
Mav