Ver Mensaje Individual
  #3 (permalink)  
Antiguo 23/06/2003, 03:13
sqa212
 
Fecha de Ingreso: mayo-2003
Mensajes: 866
Antigüedad: 22 años
Puntos: 0
Gracias Mickel, he probado lo que me has dicho, pero me aparece el siguiente mensaje de error

ADODB.Recordset error '800a0e78'
Operation is not allowed when the object is closed.
/web/registro.asp, line 62



Set rscust = Server.CreateObject("ADODB.RecordSet")
rscust.Open "clientes", strConn, adOpenKeySet, adLockPessimistic, adCmdTable
rscust.AddNew
rscust("nombre") = cnombre 'ESTA ES LINEA 62
rscust("email") = cemail
rscust("pass") = cpass1
rscust.update
Session("idcliente") = rscust("idcliente")
rscust.Close
end if
Set rscust = Nothing

Última edición por sqa212; 23/06/2003 a las 05:41