algo asi deberia andar :
<table>
<%
do while not rs.eof
%>
<tr>
<%for i=1 to 4%>
<%
if not rs.eof then
response.write("<td>" & rs("Titulo") & "</td>")
rs.movenext
end if
%>
<%next%>
</tr>
<%
rs.movenext
loop
%>
</table>
bye!