Tema: session!!!
Ver Mensaje Individual
  #11 (permalink)  
Antiguo 07/09/2006, 11:44
Avatar de Myakire
Myakire
Colaborador
 
Fecha de Ingreso: enero-2002
Ubicación: Centro de la república
Mensajes: 8.849
Antigüedad: 23 años, 3 meses
Puntos: 146
Cita:
Iniciado por verinchi Ver Mensaje
Y a todos los posts que hablan de session yo me pregunto....
El session.abandon libera la memoria del servidor??? yo creo que si pero esperaría si me confirman los que saben...
Mil gracias de antemano y espero respuesta!!!

Cita:
While you might call Session.Abandon at the top of the page, any existing session variables will not actually be destroyed until the page goes out of scope. So if you have a page like this:

Código:
<% 
    Session("a") = 1 
    Session.Abandon 
    Response.Write(Session("a")) 
%>
You will see "1" output to the screen, even though the variable was accessed after you called Session.Abandon. When the user navigates to another page, however, Session("a") will be gone.