Ver Mensaje Individual
  #2 (permalink)  
Antiguo 15/09/2006, 15:07
aenet
 
Fecha de Ingreso: septiembre-2006
Ubicación: Buenos Aires
Mensajes: 53
Antigüedad: 18 años, 2 meses
Puntos: 0
Con este codigo podías:

<script language='javascript'>
ClosingVar =true
window.onbeforeunload = ExitCheck;
function ExitCheck()
{
///control de cerrar la ventana///
if(ClosingVar == true)
{ ExitCheck = false
return "texto aqui";
}
}
</script>