<%
Response.Write("
LAST UPDATES")
SQL= "Select * from query_all order by id desc"
Set rs = MyConn.Execute(SQL)
indice = 0
while Not rs.EOF
if indice <= 11 then
foto=""&rs("foto")&""
link=""&rs("link")&""
Response.Write("
")
Response.write("
")
End if
indice = indice+1
rs.MoveNext()
Wend
%>