Ciao ragazzi ho un problema. Lavoro in Asp ed ho ils eguente script... e voglio visualizzare su tre colonne i record che richiamo... come faccio?
sql="SELECT TOP 27 * FROM articoli where comune = 'video' ORDER BY ad_id DESC"
Set rs = Server.CreateObject("ADODB.Recordset")
rs.Open sql, conn ,3,3
if not rs.eof then

cont=0
Do While Not rs.EOF
if cont=1 then
cont=0
end if
cont=cont+1

response.write "<a href=""0_video03.asp"" onclick=window.open('videonews01a.asp?id="& rs("ad_id")&"#alto','pop6','location=no,toolbar=no ,menubar=no,scrollbars=yes,resizable=no,width=820, height=680');>[img][/img] "








rs("ad_viewed")=rs("ad_viewed")+1
rs.update
rs.MoveNext
Loop
end if
Grazie di cuore