
14/06/2005, 10:24
|
 | Colaborador | | Fecha de Ingreso: febrero-2001 Ubicación: 34.517 S, 58.500 O
Mensajes: 14.550
Antigüedad: 24 años, 2 meses Puntos: 535 | |
Buscando por el número de error en aspfaq.com llegué aquí: http://www.aspfaq.com/show.asp?id=2310
y dice... Cita: And finally, if you tried to assign a variable to your own 'version' of an intrinsic object, e.g.:
<%
response = "foo"
%>
In previous versions of IIS/ASP, this latter type of error can also lead to:
Microsoft JScript runtime error '800a1390'
Illegal assignment
' or
Microsoft VBScript runtime error '800a01f5'
Illegal assignment: 'someFunction' Another possibility is that you forgot to use SET when assigning an object to a variable, e.g.:
<%
set conn = CreateObject("ADODB.Connection")
conn.open "<connection string>"
rs = conn.execute("SELECT columns FROM table")
if not rs.eof then ' error here
' ..
%>
The line starting with "rs = " should start with "SET rs = " ...
__________________ ...___... |