Ver Mensaje Individual
  #1 (permalink)  
Antiguo 30/08/2003, 04:44
Avatar de meru-kun
meru-kun
 
Fecha de Ingreso: noviembre-2002
Ubicación: Madrid
Mensajes: 854
Antigüedad: 22 años, 5 meses
Puntos: 0
¿Ocurrio una excepcion?

Verán, tengo el siguiente codigo, aparentemente "perfecto":
Código:
	strSQL = "SELECT * FROM AFILIADOS"
         Set MRA = MyMensConn.Execute(strSQL)
          Do While Not MRA.BOF or MRA.EOF
           Response.write("<td height=32 width=89><div align=""center"">")
           Response.write("<a href=""visitar.asp?cat=afiliados&url="&MRA("URL")&""">")
           Response.write("<img src="""&MRA("IMG")&""" alt="""&MRA("ALT")&""" width=88 height=31 border=0>")
           Response.write("</a></td>")
          MRA.MoveNext
         Loop
        MRA.Close
        Set MRA = Nothing
Sin embargo, cuando lo ejecuto, me muestra:
error '80020009'
Ocurrió una excepción.

/inc_abajo.asp, line 111


Esa linea es la linea marcada en negrita... ¿alguien me puede decir por que me arroja este error?