Hola
¿Podría ser algo como esto?
Código asp:
Ver originalSQL="Select campos FROM tabla"
RS.Open SQL, Conn,3,1
%>
<table border="1"><tr>
<%
for i = 0 to RS.fields.Count - 1
%>
<td><%=RS.fields(i).name%></td>
<%
next
%>
</tr>
<%
do while not RS.eof
%>
<tr>
<%
for i = 0 to RS.fields.Count - 1
%>
<td><%=RS.fields(i)%></td>
<%
next
%>
</tr>
<%
RS.movenext
Loop
RS.Close
Set RS = Nothing
Conn.Close
Set Conn = Nothing
%>
</table>
Suerte