
dim fotos()
while not rs2.eof
response.Write("cod" & rs2("codimagen") & "<br>")
fotos(i) = rs2("codimagen")
i=i+1
rs2.movenext
wend
response.Write("long " & ubound(fotos)) //acá arroja que el tamaño es 0
response.Write("contenido" & fotos(0) & " " & fotos(1) & "<br>") //este comentario no me lo arroja
Set RS = Server.CreateObject("adodb.recordset")
for i=1 to cant
response.Write("valor i" & i & "<br>")
response.Write("form" & request.Form(fotos(i)) & "<br>")
if request.Form(fotos(i)) = "s" then
consulta = "Delete From Imagenes Where CodImagen = " & fotos(i)
response.Write("consulta" & consulta & "<br>")
'Set RS = MyConn.Execute(consulta)
end if
next
Desde ya muchas gracias por cualquier ayuda.

Saludos
Analía