Hai delle intestazioni? per esempio la tabella oltre ad avere i dati ha anche le colonne con scritto IDCLIENTE, CognomeNome, Indirizzo etc. oppure devi solo mostrare i dati così come sono?

Se nel tuo caso non hai intestazioni di colonna, per ogni record crea una tabella differente e controlli i campi da visualizzare in questo modo esempio :

do while not rs1.EOF


Response.write("<table>")
Response.write("<tr class="corpotab1">

if Not IsNull(rs1("ID_CAMPO1")) then
Response.write("<td width="22%">"& rs1("ID_CAMPO1")&"></td>")
end if

if Not IsNull(rs1("ID_CAMPO2")) then
Response.write("<td width="22%">"& rs1("ID_CAMPO2")&"></td>")
end if

if Not IsNull(rs1("ID_CAMPO3")) then
Response.write("<td width="22%">"& rs1("ID_CAMPO3")&"></td>")
end if

if Not IsNull(rs1("ID_CAMPO4")) then
Response.write("<td width="22%">"& rs1("ID_CAMPO4")&"></td>")
end if

if Not IsNull(rs1("ID_CAMPO5")) then
Response.write("<td width="22%">"& rs1("ID_CAMPO5")&"></td>")
end if

Response.write("</tr>")
Response.write("</table>")

rs1.MoveNext
loop