Ver Mensaje Individual
  #5 (permalink)  
Antiguo 31/03/2003, 06:36
Vitorino
 
Fecha de Ingreso: marzo-2003
Ubicación: Madrid
Mensajes: 48
Antigüedad: 22 años, 1 mes
Puntos: 0
A ver voy a intentar darte 2 opciones..espero que alguna te valga..

1) en vez de abrir la conexion 2,3......pon 1,3,1

set tab = Server.CreateObject("ADODB.Recordset")
sql="Select * from Tabla1 where sesion='"&Session.SessionID&"'"
tab.open sql,conexion,1,3,1

2) usar la propia conexion para hacer un update...es decir..

strsql="UPDATE TABLA1 SET SALIDA=NOW WHERE SESION='" & Session.SessionID & "'"
conexion.execute(strsql)

suerte un saludo.....