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?