Hi!
This is what i started with
If Not rsPrints.EOF Then
Response.Write "<table border = '1'>"
While Not rsPrints.EOF
Response.Write "<tr>"
Response.Write "<td><img src = '../"
Response.Write rsPrints("File")
Response.Write "' width = '130' height = '170'></td>"
Response.Write "</tr>"
rsPrints.MoveNext
Wend
Response.Write "</table>"
Else
Response.Write "No Items Found"
End If
of course, it displays 1 image a row.
How to write a code to display 4 images a row?
Thank you.
Gina