<%
conexion
sql ="Select * from marketing where idioma=1 order by titulo desc"
rs.open sql,db,1
contador = 0
while not rs.eof
contador = contador + 1
%>
|
|
<%
if contador = 4 then
response.Write(" ")
contador = 0
end if
rs.movenext
wend
rs.close
cerrar_conexion
%>
|