Ver Mensaje Individual
  #10 (permalink)  
Antiguo 24/06/2003, 04:09
sqa212
 
Fecha de Ingreso: mayo-2003
Mensajes: 866
Antigüedad: 22 años
Puntos: 0
meru-kun tampoco, de todas formas el error pienso que no esta en el fichero db.asp sino en regitro.asp porque crea una nueva conexion de esta forma o no??

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

CREO QUE LOS CAMBIOS DEBEN DE HACERSE AQUI